| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.core.model.BaseBean;
- import cn.com.goldenwater.dcproj.model.AttAdBase;
- import cn.com.goldenwater.dcproj.model.BisInspAllRlationPers;
- import io.swagger.annotations.ApiModelProperty;
- import java.util.Date;
- import java.util.List;
- /**
- * Created by 61618 on 2019/5/7.
- */
- public class BisInspYearAllDto extends BaseBean {
- public BisInspYearAllDto() {
- }
- private String ptype;//类型
- private String pname;//批次名称
- private String groupName;//组名称
- private Date stTm;//检查开始时间
- private Date enTm;//检查结束时间
- private List<AttAdBase> chkAddvcd;
- private String leadDep;//牵头单位(新增)
- private String chkForm;//检查形式(新增)1四不两直 2明查 3暗访 4书面 5其他
- private String yearTaskId;//年度任务ID(新增)
- private List<BisInspAllRlationPers> chkLead;//检查组长
- private List<BisInspAllRlationPers> chkPers;//组员
- public String getPtype() {
- return ptype;
- }
- public void setPtype(String ptype) {
- this.ptype = ptype;
- }
- public String getPname() {
- return pname;
- }
- public void setPname(String pname) {
- this.pname = pname;
- }
- public String getGroupName() {
- return groupName;
- }
- public void setGroupName(String groupName) {
- this.groupName = groupName;
- }
- public Date getStTm() {
- return stTm;
- }
- public void setStTm(Date stTm) {
- this.stTm = stTm;
- }
- public Date getEnTm() {
- return enTm;
- }
- public void setEnTm(Date enTm) {
- this.enTm = enTm;
- }
- public List<AttAdBase> getChkAddvcd() {
- return chkAddvcd;
- }
- public void setChkAddvcd(List<AttAdBase> chkAddvcd) {
- this.chkAddvcd = chkAddvcd;
- }
- public String getLeadDep() {
- return leadDep;
- }
- public void setLeadDep(String leadDep) {
- this.leadDep = leadDep;
- }
- public String getChkForm() {
- return chkForm;
- }
- public void setChkForm(String chkForm) {
- this.chkForm = chkForm;
- }
- public String getYearTaskId() {
- return yearTaskId;
- }
- public void setYearTaskId(String yearTaskId) {
- this.yearTaskId = yearTaskId;
- }
- public List<BisInspAllRlationPers> getChkLead() {
- return chkLead;
- }
- public void setChkLead(List<BisInspAllRlationPers> chkLead) {
- this.chkLead = chkLead;
- }
- public List<BisInspAllRlationPers> getChkPers() {
- return chkPers;
- }
- public void setChkPers(List<BisInspAllRlationPers> chkPers) {
- this.chkPers = chkPers;
- }
- }
|