| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- 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:RelRectNotOrg
- *
- * @author lune
- * @date 2019-2-19
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class RelRectNotOrg extends BaseBean implements Serializable {
- private String guid;
- private String orgGuid;
- private String notOrgType;
- private Date fromDate;
- private Date toDate;
- public RelRectNotOrg() {
- }
- public String getGuid() {
- return guid;
- }
- public void setGuid(String guid) {
- this.guid = guid;
- }
- public String getOrgGuid() {
- return orgGuid;
- }
- public void setOrgGuid(String orgGuid) {
- this.orgGuid = orgGuid;
- }
- public String getNotOrgType() {
- return notOrgType;
- }
- public void setNotOrgType(String notOrgType) {
- this.notOrgType = notOrgType;
- }
- public Date getFromDate() {
- return fromDate;
- }
- public void setFromDate(Date fromDate) {
- this.fromDate = fromDate;
- }
- public Date getToDate() {
- return toDate;
- }
- public void setToDate(Date toDate) {
- this.toDate = toDate;
- }
- @Override
- public String toString() {
- return "RelRectNotOrg [" + "guid=" + guid + ", orgGuid=" + orgGuid + ", notOrgType=" + notOrgType + ", fromDate=" + fromDate + ", toDate=" + toDate + "]";
- }
- }
|