| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * TacInspYearBatchGroupPersParam
- *
- * @author lune
- * @date 2019-9-6
- */
- public class TacInspYearBatchGroupPersParam extends PageParam implements Serializable {
- @ApiModelProperty("创建时间")
- private Date inTm;
- @ApiModelProperty("修改时间")
- private Date upTm;
- @ApiModelProperty("主键ID")
- private String id;
- @ApiModelProperty("稽察年度批次ID")
- private String yearBatchId;
- @ApiModelProperty("年度")
- private Long year;
- @ApiModelProperty("批次")
- private Long batch;
- @ApiModelProperty("*人员ID")
- private String persId;
- @ApiModelProperty("督查组ID")
- private String groupId;
- @ApiModelProperty("督查组组别")
- private Long groupNm;
- @ApiModelProperty("*所属角色--- 特派员:20; 助理:19; 前期专家:11 建管专家:12;计划专家:13;财务专家:14;质量专家:15;安全专家:16")
- private String roleType;
- @ApiModelProperty("是否通知,0未通知 1已通知 ")
- private String isNotice;
- @ApiModelProperty("通知内容")
- private String noticeInfo;
- @ApiModelProperty("是否发送短信,0未发送短信 1发送短信成功 2发送失败 ")
- private String isSms;
- @ApiModelProperty("数据状态(0:正常;9:删除)")
- private String dataStat;
- @ApiModelProperty("创建人")
- private String ctPersId;
- @ApiModelProperty("回复是否参加 0初始默认,1参加 2不参加")
- private String isJoin;
- @ApiModelProperty("手机号")
- private String phone;
- @ApiModelProperty("发送短信记录时间")
- private Date sendsmsTm;
- @ApiModelProperty("开始时间")
- private String sttm;
- @ApiModelProperty("结束时间")
- private String entm;
- public TacInspYearBatchGroupPersParam() {
- }
- 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 getIsJoin() {
- return isJoin;
- }
- public void setIsJoin(String isJoin) {
- this.isJoin = isJoin;
- }
- public Date getSendsmsTm() {
- return sendsmsTm;
- }
- public void setSendsmsTm(Date sendsmsTm) {
- this.sendsmsTm = sendsmsTm;
- }
- public String getPhone() {
- return phone;
- }
- public void setPhone(String phone) {
- this.phone = phone;
- }
- public Date getInTm() {
- return inTm;
- }
- public void setInTm(Date inTm) {
- this.inTm = inTm;
- }
- public Date getUpTm() {
- return upTm;
- }
- public void setUpTm(Date upTm) {
- this.upTm = upTm;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getYearBatchId() {
- return yearBatchId;
- }
- public void setYearBatchId(String yearBatchId) {
- this.yearBatchId = yearBatchId;
- }
- 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 getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String getGroupId() {
- return groupId;
- }
- public void setGroupId(String groupId) {
- this.groupId = groupId;
- }
- public Long getGroupNm() {
- return groupNm;
- }
- public void setGroupNm(Long groupNm) {
- this.groupNm = groupNm;
- }
- public String getRoleType() {
- return roleType;
- }
- public void setRoleType(String roleType) {
- this.roleType = roleType;
- }
- public String getIsNotice() {
- return isNotice;
- }
- public void setIsNotice(String isNotice) {
- this.isNotice = isNotice;
- }
- public String getNoticeInfo() {
- return noticeInfo;
- }
- public void setNoticeInfo(String noticeInfo) {
- this.noticeInfo = noticeInfo;
- }
- public String getIsSms() {
- return isSms;
- }
- public void setIsSms(String isSms) {
- this.isSms = isSms;
- }
- public String getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- public String getCtPersId() {
- return ctPersId;
- }
- public void setCtPersId(String ctPersId) {
- this.ctPersId = ctPersId;
- }
- }
|