ecbbfee611b406a6f79c536dd0c10fd15a065910.svn-base 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import cn.com.goldenwater.dcproj.model.AttAdBase;
  4. import cn.com.goldenwater.dcproj.model.BisInspAllRlationPers;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import java.util.Date;
  7. import java.util.List;
  8. /**
  9. * Created by 61618 on 2019/5/7.
  10. */
  11. public class BisInspYearAllDto extends BaseBean {
  12. public BisInspYearAllDto() {
  13. }
  14. private String ptype;//类型
  15. private String pname;//批次名称
  16. private String groupName;//组名称
  17. private Date stTm;//检查开始时间
  18. private Date enTm;//检查结束时间
  19. private List<AttAdBase> chkAddvcd;
  20. private String leadDep;//牵头单位(新增)
  21. private String chkForm;//检查形式(新增)1四不两直 2明查 3暗访 4书面 5其他
  22. private String yearTaskId;//年度任务ID(新增)
  23. private List<BisInspAllRlationPers> chkLead;//检查组长
  24. private List<BisInspAllRlationPers> chkPers;//组员
  25. public String getPtype() {
  26. return ptype;
  27. }
  28. public void setPtype(String ptype) {
  29. this.ptype = ptype;
  30. }
  31. public String getPname() {
  32. return pname;
  33. }
  34. public void setPname(String pname) {
  35. this.pname = pname;
  36. }
  37. public String getGroupName() {
  38. return groupName;
  39. }
  40. public void setGroupName(String groupName) {
  41. this.groupName = groupName;
  42. }
  43. public Date getStTm() {
  44. return stTm;
  45. }
  46. public void setStTm(Date stTm) {
  47. this.stTm = stTm;
  48. }
  49. public Date getEnTm() {
  50. return enTm;
  51. }
  52. public void setEnTm(Date enTm) {
  53. this.enTm = enTm;
  54. }
  55. public List<AttAdBase> getChkAddvcd() {
  56. return chkAddvcd;
  57. }
  58. public void setChkAddvcd(List<AttAdBase> chkAddvcd) {
  59. this.chkAddvcd = chkAddvcd;
  60. }
  61. public String getLeadDep() {
  62. return leadDep;
  63. }
  64. public void setLeadDep(String leadDep) {
  65. this.leadDep = leadDep;
  66. }
  67. public String getChkForm() {
  68. return chkForm;
  69. }
  70. public void setChkForm(String chkForm) {
  71. this.chkForm = chkForm;
  72. }
  73. public String getYearTaskId() {
  74. return yearTaskId;
  75. }
  76. public void setYearTaskId(String yearTaskId) {
  77. this.yearTaskId = yearTaskId;
  78. }
  79. public List<BisInspAllRlationPers> getChkLead() {
  80. return chkLead;
  81. }
  82. public void setChkLead(List<BisInspAllRlationPers> chkLead) {
  83. this.chkLead = chkLead;
  84. }
  85. public List<BisInspAllRlationPers> getChkPers() {
  86. return chkPers;
  87. }
  88. public void setChkPers(List<BisInspAllRlationPers> chkPers) {
  89. this.chkPers = chkPers;
  90. }
  91. }