| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package cn.com.goldenwater.dcproj.model;
- import java.io.Serializable;
- import java.util.Date;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- /**
- * entity:ReaInspOrg
- *
- * @author lune
- * @date 2019-2-19
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class ReaInspOrg extends BaseBean implements Serializable {
- private String guid;
- private String schmId;
- private Date intm;
- private Date uptm;
- public ReaInspOrg() {
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getSchmId() {
- return schmId;
- }
- public void setSchmId(String schmId) {
- this.schmId = schmId;
- }
- 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 "ReaInspOrg [" + "guid=" + guid + ", schmId=" + schmId + ", intm=" + intm + ", uptm=" + uptm + "]";
- }
- }
|