xiaoyong931011
2022-06-10 93e281b3cc60c8d24a0ed5547d3d399c03f9bab6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.xcong.farmer.cms.modules.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminUpdateBelongDto", description = "参数接收类")
public class AdminUpdatePasswordDto {
 
    @ApiModelProperty(value = "原密码")
    private String oldPassword;
 
    @ApiModelProperty(value = "新密码")
    private String newPassword;
}