commit
756c1b0590
@ -0,0 +1,21 @@
|
||||
package com.ruoyi.system.domain.count;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@Data
|
||||
@ApiModel(value="检查结果统计", description="检查结果统计")
|
||||
public class CheckResultCountDTO implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "通过")
|
||||
private Integer tg;
|
||||
|
||||
@ApiModelProperty(value = "未通过")
|
||||
private Integer wtg;
|
||||
|
||||
@ApiModelProperty(value = "待检查")
|
||||
private Integer djc;
|
||||
}
|
@ -0,0 +1,17 @@
|
||||
package com.ruoyi.system.domain.count;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@Data
|
||||
@ApiModel(value="检查类型统计", description="检查类型统计")
|
||||
public class CheckTypeCountDTO implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "自从检查")
|
||||
private Integer zxjc;
|
||||
|
||||
@ApiModelProperty(value = "保密局检查")
|
||||
private Integer bmjjc;
|
||||
}
|
Loading…
Reference in new issue