| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- package cn.com.goldenwater.dcproj.dto;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * Created by jinshui on 2019/9/6.
- */
- public class TacCountDto implements Serializable{
- @ApiModelProperty("登记表id")
- private String rgstrId;
- @ApiModelProperty("数量")
- private String count;
- @ApiModelProperty("名称")
- private String name;
- @ApiModelProperty("分组字段")
- private String code;
- @ApiModelProperty("已选人员数量")
- private String selectCount;
- @ApiModelProperty("一般问题")
- private String normal;
- @ApiModelProperty("较重问题")
- private String heavier;
- @ApiModelProperty("严重问题")
- private String serious;
- @ApiModelProperty("年度")
- private Long year;
- @ApiModelProperty("批次")
- private Long batch;
- @ApiModelProperty("角色")
- private String roleType;
- @ApiModelProperty("组数量")
- private Long groupCount;
- @ApiModelProperty("人员数量")
- private Long persCount;
- @ApiModelProperty("参加人次")
- private Long ctCount;
- @ApiModelProperty("稽察地点")
- private String adName;
- @ApiModelProperty("详情")
- private String detail;
- @ApiModelProperty("对比上年度")
- private Integer percent;
- @ApiModelProperty("悬浮展示的名称")
- private String showName;
- @ApiModelProperty("稽察首页值")
- private String value;
- @ApiModelProperty
- private String pblmPasi;
- @ApiModelProperty("是典型问题数量")
- private String isCasePblmCount;
- @ApiModelProperty("不是典型问题数量")
- private String isNotCasePblmCount;
- public TacCountDto(){
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- public String getPblmPasi() {
- return pblmPasi;
- }
- public void setPblmPasi(String pblmPasi) {
- this.pblmPasi = pblmPasi;
- }
- public String getIsCasePblmCount() {
- return isCasePblmCount;
- }
- public void setIsCasePblmCount(String isCasePblmCount) {
- this.isCasePblmCount = isCasePblmCount;
- }
- public String getIsNotCasePblmCount() {
- return isNotCasePblmCount;
- }
- public void setIsNotCasePblmCount(String isNotCasePblmCount) {
- this.isNotCasePblmCount = isNotCasePblmCount;
- }
- public Integer getPercent() {
- return percent;
- }
- public void setPercent(Integer percent) {
- this.percent = percent;
- }
- public String getShowName() {
- return showName;
- }
- public void setShowName(String showName) {
- this.showName = showName;
- }
- public String getValue() {
- return value;
- }
- public void setValue(String value) {
- this.value = value;
- }
- public Long getYear() {
- return year;
- }
- public void setYear(Long year) {
- this.year = year;
- }
- public Long getBatch() {
- return batch;
- }
- public void setBatch(Long batch) {
- this.batch = batch;
- }
- public String getRoleType() {
- return roleType;
- }
- public void setRoleType(String roleType) {
- this.roleType = roleType;
- }
- public Long getGroupCount() {
- return groupCount;
- }
- public void setGroupCount(Long groupCount) {
- this.groupCount = groupCount;
- }
- public Long getPersCount() {
- return persCount;
- }
- public void setPersCount(Long persCount) {
- this.persCount = persCount;
- }
- public Long getCtCount() {
- return ctCount;
- }
- public void setCtCount(Long ctCount) {
- this.ctCount = ctCount;
- }
- public String getAdName() {
- return adName;
- }
- public void setAdName(String adName) {
- this.adName = adName;
- }
- public String getDetail() {
- return detail;
- }
- public void setDetail(String detail) {
- this.detail = detail;
- }
- public String getHeavier() {
- return heavier;
- }
- public void setHeavier(String heavier) {
- this.heavier = heavier;
- }
- public String getSerious() {
- return serious;
- }
- public void setSerious(String serious) {
- this.serious = serious;
- }
- public String getNormal() {
- return normal;
- }
- public void setNormal(String normal) {
- this.normal = normal;
- }
- public String getSelectCount() {
- return selectCount;
- }
- public void setSelectCount(String selectCount) {
- this.selectCount = selectCount;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getCount() {
- return count;
- }
- public void setCount(String count) {
- this.count = count;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- @Override
- public String toString() {
- return "TacCountDto{" +
- "count='" + count + '\'' +
- ", name='" + name + '\'' +
- '}';
- }
- }
|