| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import java.io.Serializable;
- /**
- * 用水单位填报对象
- *
- * @author zhangcheng
- * @date 2019/11/26 18:01
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspOffLineWuntRgeister extends BaseBean implements Serializable {
- //BIS_INSP_SVWT_WUNT_RGSTR
- private AttWuntBase base;//用水单位基础信息 ATT_WUNT_BASE
- private BisInspSvwtWuntRgstr bisInspSvwtWuntRgstr;// 用水单位登记表 BIS_INSP_SVWT_WUNT_RGSTR
- private BisInspSvwtWuntRgstrWsusw bisInspSvwtWuntRgstrWsusw;//BIS_INSP_SVWT_WUNT_RGSTR_WSUSW
- private BisInspSvwtWuntRgstrWuusw bisInspSvwtWuntRgstrWuusw;//BIS_INSP_SVWT_WUNT_RGSTR_WUUSW
- public BisInspOffLineWuntRgeister() {
- }
- public AttWuntBase getBase() {
- return base;
- }
- public void setBase(AttWuntBase base) {
- this.base = base;
- }
- public BisInspSvwtWuntRgstr getBisInspSvwtWuntRgstr() {
- return bisInspSvwtWuntRgstr;
- }
- public void setBisInspSvwtWuntRgstr(BisInspSvwtWuntRgstr bisInspSvwtWuntRgstr) {
- this.bisInspSvwtWuntRgstr = bisInspSvwtWuntRgstr;
- }
- public BisInspSvwtWuntRgstrWsusw getBisInspSvwtWuntRgstrWsusw() {
- return bisInspSvwtWuntRgstrWsusw;
- }
- public void setBisInspSvwtWuntRgstrWsusw(BisInspSvwtWuntRgstrWsusw bisInspSvwtWuntRgstrWsusw) {
- this.bisInspSvwtWuntRgstrWsusw = bisInspSvwtWuntRgstrWsusw;
- }
- public BisInspSvwtWuntRgstrWuusw getBisInspSvwtWuntRgstrWuusw() {
- return bisInspSvwtWuntRgstrWuusw;
- }
- public void setBisInspSvwtWuntRgstrWuusw(BisInspSvwtWuntRgstrWuusw bisInspSvwtWuntRgstrWuusw) {
- this.bisInspSvwtWuntRgstrWuusw = bisInspSvwtWuntRgstrWuusw;
- }
- }
|