parent
f93b0b9a71
commit
8f2ac2271e
@ -0,0 +1,34 @@
|
||||
package com.ruoyi.system.domain.apply.dto;
|
||||
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* packageName com.ruoyi.system.domain.userexam.dto.response
|
||||
*
|
||||
* @author wangxy
|
||||
* @version JDK 8
|
||||
* @className ExamCountDTO
|
||||
* @date 2024/8/7
|
||||
* @description 用户统计
|
||||
*/
|
||||
@Data
|
||||
@ApiModel(value="用户统计", description="用户统计")
|
||||
public class ApplyCountDTO implements Serializable {
|
||||
|
||||
@ApiModelProperty(value = "已登记")
|
||||
private Integer ydj;
|
||||
|
||||
@ApiModelProperty(value = "已上岗")
|
||||
private Integer ysg;
|
||||
|
||||
@ApiModelProperty(value = "已调岗")
|
||||
private Integer ytg;
|
||||
|
||||
@ApiModelProperty(value = "已离职")
|
||||
private Integer ylz;
|
||||
|
||||
}
|
Loading…
Reference in new issue