Pu Zhibing
2024-10-22 51de7e6b1a7b68c76b8dcb385013a0c06466b81c
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.account.api.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
public class UserChangeDto {
    private Long userId;
    @ApiModelProperty("1=正常,2=冻结")
    private Integer status;
    private String remark;
}