parent
8fea070430
commit
1c3d76917d
@ -0,0 +1,32 @@
|
||||
package com.ruoyi.system.domain.count;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* packageName com.ruoyi.system.domain.count
|
||||
*
|
||||
* @author wangxy
|
||||
* @version JDK 8
|
||||
* @className UserSmCountDTO
|
||||
* @date 2024/8/8
|
||||
* @description 涉密程度统计
|
||||
*/
|
||||
@Data
|
||||
@ApiModel(value="涉密程度统计", description="涉密程度统计")
|
||||
public class UserSmCountDTO implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "一般")
|
||||
private Integer yb;
|
||||
|
||||
@ApiModelProperty(value = "重要")
|
||||
private Integer zy;
|
||||
|
||||
@ApiModelProperty(value = "核心")
|
||||
private Integer hx;
|
||||
|
||||
|
||||
}
|
Loading…
Reference in new issue