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