parent
8fea070430
commit
7d323d2fc8
@ -0,0 +1,24 @@
|
||||
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 TrainCountDTO implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "总数")
|
||||
private Integer total;
|
||||
|
||||
@ApiModelProperty(value = "待审核")
|
||||
private Integer dsh;
|
||||
|
||||
@ApiModelProperty(value = "审核通过")
|
||||
private Integer shtg;
|
||||
|
||||
@ApiModelProperty(value = "审核未通过")
|
||||
private Integer shwtg;
|
||||
}
|
Loading…
Reference in new issue