| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import java.io.Serializable;
- /**
- * @author lhc
- * @date 2020/3/16 13:44
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspOffLineRsmlRgeister extends BaseBean implements Serializable {
- private BisInspRsmlRgstrPres bisInspRsmlRgstrPres;//“三个责任人”落实情况
- private BisInspRsmlRgstrRunManage bisInspRsmlRgstrRunManage;//运行情况 BIS_INSP_RSML_RGSTR_RUN_MANAGE
- private BisInspRsmlRgstrProject bisInspRsmlRgstrProject; //水库工程实体 BIS_INSP_RSML_RGSTR_PROJECT
- private BisInspOffLineRsml bisInspOffLineRsml;//中型水库上传替换对象
- private BisInspRsmlRgstrSafe bisInspRsmlRgstrSafe;//水库安全管理三级责任人
- public BisInspOffLineRsmlRgeister() {
- }
- public BisInspOffLineRsml getBisInspOffLineRsml() {
- return bisInspOffLineRsml;
- }
- public void setBisInspOffLineRsml(BisInspOffLineRsml bisInspOffLineRsml) {
- this.bisInspOffLineRsml = bisInspOffLineRsml;
- }
- public BisInspRsmlRgstrPres getBisInspRsmlRgstrPres() {
- return bisInspRsmlRgstrPres;
- }
- public void setBisInspRsmlRgstrPres(BisInspRsmlRgstrPres bisInspRsmlRgstrPres) {
- this.bisInspRsmlRgstrPres = bisInspRsmlRgstrPres;
- }
- public BisInspRsmlRgstrRunManage getBisInspRsmlRgstrRunManage() {
- return bisInspRsmlRgstrRunManage;
- }
- public void setBisInspRsmlRgstrRunManage(BisInspRsmlRgstrRunManage bisInspRsmlRgstrRunManage) {
- this.bisInspRsmlRgstrRunManage = bisInspRsmlRgstrRunManage;
- }
- public BisInspRsmlRgstrProject getBisInspRsmlRgstrProject() {
- return bisInspRsmlRgstrProject;
- }
- public void setBisInspRsmlRgstrProject(BisInspRsmlRgstrProject bisInspRsmlRgstrProject) {
- this.bisInspRsmlRgstrProject = bisInspRsmlRgstrProject;
- }
- public BisInspRsmlRgstrSafe getBisInspRsmlRgstrSafe() {
- return bisInspRsmlRgstrSafe;
- }
- public void setBisInspRsmlRgstrSafe(BisInspRsmlRgstrSafe bisInspRsmlRgstrSafe) {
- this.bisInspRsmlRgstrSafe = bisInspRsmlRgstrSafe;
- }
- }
|