| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- import java.io.Serializable;
- import io.swagger.annotations.ApiModelProperty;
- /**
- * TacProvincePlanTaskParam
- *
- * @author lune
- * @date 2020-5-28
- */
- public class TacProvincePlanTaskParam extends PageParam implements Serializable {
- @ApiModelProperty("id")
- private String id;
- @ApiModelProperty("记录人员ID")
- private String persId;
- @ApiModelProperty("创建时间")
- private Date intm;
- @ApiModelProperty("最后修改时间")
- private Date uptm;
- @ApiModelProperty("数据状态")
- private String dataStat;
- @ApiModelProperty("机构id")
- private String orgId;
- @ApiModelProperty("机构名称")
- private String orgName;
- private String nowId;
- private String nowStep;
- @ApiModelProperty("登记表id")
- private String rgstrId;
- @ApiModelProperty("任务状态:0驳回,1提交")
- private String state;
- public TacProvincePlanTaskParam() {
- }
- public String getState() {
- return state;
- }
- public void setState(String state) {
- this.state = state;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- 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 getDataStat() {
- return dataStat;
- }
- public void setDataStat(String dataStat) {
- this.dataStat = dataStat;
- }
- @Override
- public String getOrgId() {
- return orgId;
- }
- @Override
- public void setOrgId(String orgId) {
- this.orgId = orgId;
- }
- public String getOrgName() {
- return orgName;
- }
- public void setOrgName(String orgName) {
- this.orgName = orgName;
- }
- public String getNowId() {
- return nowId;
- }
- public void setNowId(String nowId) {
- this.nowId = nowId;
- }
- public String getNowStep() {
- return nowStep;
- }
- public void setNowStep(String nowStep) {
- this.nowStep = nowStep;
- }
- public String getRgstrId() {
- return rgstrId;
- }
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- }
|