医生统计导出标题问题处理
This commit is contained in:
parent
5909c9682e
commit
78aa87b733
@ -1,44 +1,57 @@
|
|||||||
package net.lab1024.sa.admin.module.business.statistics.domain;
|
package net.lab1024.sa.admin.module.business.statistics.domain;
|
||||||
|
|
||||||
|
import com.alibaba.excel.annotation.ExcelProperty;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
import lombok.Data;
|
import lombok.Data;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
public class StatisticsExpertVO {
|
public class StatisticsExpertVO {
|
||||||
|
|
||||||
|
@ExcelProperty("专家ID")
|
||||||
@ApiModelProperty(value = "专家ID")
|
@ApiModelProperty(value = "专家ID")
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
|
@ExcelProperty("专家UUID")
|
||||||
@ApiModelProperty(value = "专家UUID")
|
@ApiModelProperty(value = "专家UUID")
|
||||||
private String uuid;
|
private String uuid;
|
||||||
|
|
||||||
|
@ExcelProperty("专家姓名")
|
||||||
@ApiModelProperty(value = "专家姓名")
|
@ApiModelProperty(value = "专家姓名")
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
|
@ExcelProperty("专家手机号")
|
||||||
@ApiModelProperty(value = "专家手机号")
|
@ApiModelProperty(value = "专家手机号")
|
||||||
private String mobile;
|
private String mobile;
|
||||||
|
|
||||||
|
@ExcelProperty("省份")
|
||||||
@ApiModelProperty(value = "省份")
|
@ApiModelProperty(value = "省份")
|
||||||
private String provName;
|
private String provName;
|
||||||
|
|
||||||
|
@ExcelProperty("市区")
|
||||||
@ApiModelProperty(value = "市区")
|
@ApiModelProperty(value = "市区")
|
||||||
private String cityName;
|
private String cityName;
|
||||||
|
|
||||||
|
@ExcelProperty("专家医院名称")
|
||||||
@ApiModelProperty(value = "专家医院名称")
|
@ApiModelProperty(value = "专家医院名称")
|
||||||
private String hospitalName;
|
private String hospitalName;
|
||||||
|
|
||||||
|
@ExcelProperty("总数量")
|
||||||
@ApiModelProperty(value = "总数量")
|
@ApiModelProperty(value = "总数量")
|
||||||
private Integer total;
|
private Integer total;
|
||||||
|
|
||||||
|
@ExcelProperty("专家通过数量")
|
||||||
@ApiModelProperty(value = "专家通过数量")
|
@ApiModelProperty(value = "专家通过数量")
|
||||||
private Integer passNum;
|
private Integer passNum;
|
||||||
|
|
||||||
|
@ExcelProperty("专家待审核数量")
|
||||||
@ApiModelProperty(value = "专家待审核数量")
|
@ApiModelProperty(value = "专家待审核数量")
|
||||||
private Integer waitNum;
|
private Integer waitNum;
|
||||||
|
|
||||||
|
@ExcelProperty("专家待修改数量")
|
||||||
@ApiModelProperty(value = "专家待修改数量")
|
@ApiModelProperty(value = "专家待修改数量")
|
||||||
private Integer refuseNum;
|
private Integer refuseNum;
|
||||||
|
|
||||||
|
@ExcelProperty("已结算数量")
|
||||||
@ApiModelProperty(value = "已结算数量")
|
@ApiModelProperty(value = "已结算数量")
|
||||||
private Integer settlementNum;
|
private Integer settlementNum;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user