| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- package cn.com.goldenwater.dcproj.model;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:AttWtuntBase
- *
- * @author lune
- * @date 2020-8-17
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class AttWtuntBase extends WtuntBase implements Serializable {
- @ApiModelProperty(value = "主键ID", position = 1)
- private String id;
- @ApiModelProperty(value = "创建时间", position = 17)
- private Date intm;
- @ApiModelProperty(value = "修改时间", position = 18)
- private Date uptm;
- @ApiModelProperty(value = "负责人电话", position = 19)
- private String principalTel;
- @ApiModelProperty(value = "备注", position = 20)
- private String note;
- @ApiModelProperty(value = "节水单位获批时间", position = 21)
- private String appDepTm;
- @ApiModelProperty(value = "节水单位获批部门", position = 22)
- private String appDep;
- public AttWtuntBase() {
- }
- public String getAppDepTm() {
- return appDepTm;
- }
- public void setAppDepTm(String appDepTm) {
- this.appDepTm = appDepTm;
- }
- public String getAppDep() {
- return appDep;
- }
- public void setAppDep(String appDep) {
- this.appDep = appDep;
- }
- public String getPrincipalTel() {
- return principalTel;
- }
- public void setPrincipalTel(String principalTel) {
- this.principalTel = principalTel;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- 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;
- }
- @Override
- public String toString() {
- return "AttWtuntBase{" +
- "id='" + id + '\'' +
- ", intm=" + intm +
- ", uptm=" + uptm +
- ", principalTel='" + principalTel + '\'' +
- ", note='" + note + '\'' +
- ", appDepTm='" + appDepTm + '\'' +
- ", appDep='" + appDep + '\'' +
- "} " + super.toString();
- }
- }
|