| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import io.swagger.annotations.ApiModelProperty;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- /**
- * entity:TacProvincePlanTask
- *
- * @author lune
- * @date 2020-5-28
- */
- @JsonIgnoreProperties(value = {"handler","hibernateLazyInitializer"})
- public class TacProvincePlanTask extends BaseBean 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 TacProvincePlanTask() {
- }
- 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;
- }
- @Override
- public String getRgstrId() {
- return rgstrId;
- }
- @Override
- public void setRgstrId(String rgstrId) {
- this.rgstrId = rgstrId;
- }
- @Override
- public String toString() {
- return "TacProvincePlanTask [" + "id=" + id + ", persId=" + persId + ", intm=" + intm + ", uptm=" + uptm + ", dataStat=" + dataStat + ", orgId=" + orgId + ", orgName=" + orgName + ", nowId=" + nowId + ", nowStep=" + nowStep + ", rgstrId=" + rgstrId + "]";
- }
- }
|