| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.core.model.BaseBean;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * Created by 61618 on 2019/5/7.
- */
- public class BisInspAllDto extends BaseBean {
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("上级节点id")
- private String pid;
- @ApiModelProperty("节点名称")
- private String pnm;
- // 督查开始时间
- @ApiModelProperty("开始时间")
- private String sttm;
- // 督查结束时间
- @ApiModelProperty("结束时间")
- private String entm;
- // 数据插入时间
- @ApiModelProperty("数据插入时间")
- private String intm;
- // 插入人id
- private String psn;
- // 督查计划年份
- @ApiModelProperty("主键id")
- private String inspYear;
- // 督查计划月份
- @ApiModelProperty("月份")
- private String inspMnth;
- // 督查任务
- @ApiModelProperty("督查任务")
- private String inspTask;
- @ApiModelProperty("组长")
- private String groupLeader;
- @ApiModelProperty("组员")
- private String groupMember;
- @ApiModelProperty("联络员")
- private String liaisonOfficer;
- @ApiModelProperty("专家")
- private String specialist;
- @ApiModelProperty("督查项")
- private String objTypeName;
- @ApiModelProperty("批次名称")
- private String ppnm;
- @ApiModelProperty("区域")
- private String objNm;
- @ApiModelProperty("经度")
- private double centerXGd;
- @ApiModelProperty("纬度")
- private double centerYGd;
- @ApiModelProperty("组长电话")
- private String groupLeaderPhone;
- @ApiModelProperty("计划检查项目数量")
- private Long quantity;
- public String getGroupLeaderPhone() {
- return groupLeaderPhone;
- }
- public void setGroupLeaderPhone(String groupLeaderPhone) {
- this.groupLeaderPhone = groupLeaderPhone;
- }
- public double getCenterXGd() {
- return centerXGd;
- }
- public void setCenterXGd(double centerXGd) {
- this.centerXGd = centerXGd;
- }
- public double getCenterYGd() {
- return centerYGd;
- }
- public void setCenterYGd(double centerYGd) {
- this.centerYGd = centerYGd;
- }
- public String getObjNm() {
- return objNm;
- }
- public void setObjNm(String objNm) {
- this.objNm = objNm;
- }
- public String getObjTypeName() {
- return objTypeName;
- }
- public void setObjTypeName(String objTypeName) {
- this.objTypeName = objTypeName;
- }
- public String getPpnm() {
- return ppnm;
- }
- public void setPpnm(String ppnm) {
- this.ppnm = ppnm;
- }
- public String getGroupLeader() {
- return groupLeader;
- }
- public void setGroupLeader(String groupLeader) {
- this.groupLeader = groupLeader;
- }
- public String getGroupMember() {
- return groupMember;
- }
- public void setGroupMember(String groupMember) {
- this.groupMember = groupMember;
- }
- public String getLiaisonOfficer() {
- return liaisonOfficer;
- }
- public void setLiaisonOfficer(String liaisonOfficer) {
- this.liaisonOfficer = liaisonOfficer;
- }
- public String getSpecialist() {
- return specialist;
- }
- public void setSpecialist(String specialist) {
- this.specialist = specialist;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPid() {
- return pid;
- }
- public void setPid(String pid) {
- this.pid = pid;
- }
- public String getPnm() {
- return pnm;
- }
- public void setPnm(String pnm) {
- this.pnm = pnm;
- }
- public String getSttm() {
- return sttm;
- }
- public void setSttm(String sttm) {
- this.sttm = sttm;
- }
- public String getEntm() {
- return entm;
- }
- public void setEntm(String entm) {
- this.entm = entm;
- }
- public String getIntm() {
- return intm;
- }
- public void setIntm(String intm) {
- this.intm = intm;
- }
- public String getPsn() {
- return psn;
- }
- public void setPsn(String psn) {
- this.psn = psn;
- }
- public String getInspYear() {
- return inspYear;
- }
- public void setInspYear(String inspYear) {
- this.inspYear = inspYear;
- }
- public String getInspMnth() {
- return inspMnth;
- }
- public void setInspMnth(String inspMnth) {
- this.inspMnth = inspMnth;
- }
- public String getInspTask() {
- return inspTask;
- }
- public void setInspTask(String inspTask) {
- this.inspTask = inspTask;
- }
- public Long getQuantity() {
- return quantity;
- }
- public void setQuantity(Long quantity) {
- this.quantity = quantity;
- }
- @Override
- public String toString() {
- return "BisInspAllDto{" +
- "id='" + id + '\'' +
- ", pid='" + pid + '\'' +
- ", pnm='" + pnm + '\'' +
- ", sttm='" + sttm + '\'' +
- ", entm='" + entm + '\'' +
- ", intm='" + intm + '\'' +
- ", psn='" + psn + '\'' +
- ", inspYear='" + inspYear + '\'' +
- ", inspMnth='" + inspMnth + '\'' +
- ", inspTask='" + inspTask + '\'' +
- '}';
- }
- }
|