Procházet zdrojové kódy

git-svn-id: https://192.168.57.71/svn/jsgkj@916 931142cf-59ea-a443-aa0e-51397b428577

ld_lixh před 8 roky
rodič
revize
2ad6c716e0

+ 54 - 0
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/ctl/WxhwCtl.java

@@ -0,0 +1,54 @@
+package com.xt.js.gkaq.web.ctl;
+
+
+
+import java.util.List;
+
+import javax.servlet.http.HttpServletRequest;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Controller;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.ResponseBody;
+
+import com.xt.js.gkaq.common.BaseCtl;
+import com.xt.js.gkaq.web.model.WxhwModel;
+import com.xt.js.gkaq.web.service.WxhwService;
+import com.xt.js.gkaq.web.vo.WxhwVo;
+import com.yuanxd.tools.pagehelper.PageHelper;
+import com.yuanxd.tools.pagehelper.PageInfo;
+
+@Controller
+@RequestMapping(value = "/wxhw", produces = "application/json; charset=utf-8")
+public class WxhwCtl extends BaseCtl {
+	
+	@Autowired
+	private WxhwService service;
+	
+	/**
+     * 数据表格
+     * @param vo
+     * @return
+     */
+    @RequestMapping("list")
+    @ResponseBody
+    public PageInfo<WxhwModel> list(WxhwVo vo,HttpServletRequest request) {
+		if (null == vo.getPage() || vo.getPage() < 1) {
+			vo.setPage(1);
+		}
+		if (null == vo.getRows() || vo.getRows() < 1) {
+			vo.setRows(1);
+		}
+		PageHelper.startPage(vo.getPage(), vo.getRows());
+		WxhwModel model = new WxhwModel();
+		model.setBh(vo.getBh());
+		model.setMchsm(vo.getMchsm());
+		model.setLbhxb(vo.getLbhxb());
+		model.setSzd(vo.getSzd());
+		
+		List<WxhwModel> list = service.selectAll(model);
+		PageInfo<WxhwModel> pageResult = new PageInfo<>(list);
+		return pageResult;
+    }
+   
+}

+ 11 - 0
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/mappers/GqModelMapper.java

@@ -0,0 +1,11 @@
+package com.xt.js.gkaq.web.mappers;
+
+import java.util.List;
+
+import com.xt.js.gkaq.common.BaseMapper;
+import com.xt.js.gkaq.frame.model.ComboBoxDto;
+import com.xt.js.gkaq.web.model.GqModel;
+
+public interface GqModelMapper extends BaseMapper<GqModel> {
+	public List<ComboBoxDto> selectByInfo(GqModel model);
+}

+ 10 - 0
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/mappers/WxhwModelMapper.java

@@ -0,0 +1,10 @@
+package com.xt.js.gkaq.web.mappers;
+
+import java.util.List;
+
+import com.xt.js.gkaq.common.BaseMapper;
+import com.xt.js.gkaq.web.model.WxhwModel;
+
+public interface WxhwModelMapper extends BaseMapper<WxhwModel> {
+	public List<WxhwModel> selectAll(WxhwModel model);
+}

+ 249 - 0
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/model/GqModel.java

@@ -0,0 +1,249 @@
+package com.xt.js.gkaq.web.model;
+
+import com.xt.js.gkaq.common.BaseUUIDModel;
+
+public class GqModel extends BaseUUIDModel {
+    /**
+	 * 
+	 */
+	private static final long serialVersionUID = -4635108369387619903L;
+	private Long uuid;
+	private String szd;//所在地
+	private Long ssgk;//所属港口
+	private String gqmc;//港口名称
+	private String gqszsylx;//港区所在水域类型 字典表 沿海 河流 湖泊 水库
+	private String gqmj;//港区面积(万平方米)
+	private String lymj;//陆域面积(万平方米)
+	private String syfw;//水域范围
+	private String symj;//水域面积(万平方米)
+	private String gqghmj;//港区规划面积(万平方米)
+	private String ghlymj;//规划陆域面积(万平方米)
+	private String fgyscydghmj;//非工业生产用地规划面积(万平方米)
+	private String ghsymj;//规划水域面积(万平方米)
+	private String gqzraxcd;//港区自然岸线长度(米)
+	private String gymtaxcd;//公用码头岸线长度(米)
+	private String gqgkaxcd;//港区港口岸线长度(米)
+	private String gkssysyaxcd;//港口设施已使用岸线长度(米)
+	private String gqdmbdzdz;//港区地面坡度最大值
+	private String bz;//备注
+	private String adduser;//创建人
+	private String updateuser;//修改人
+	private Long recordstatus;//删除状态
+	private String sftb;//是否同步 Y或者N
+	private String tbzt;//同步状态 已同步Y, 未同步N
+	private Long tbdyid;//同步对应ID
+	private String qylb;//区域类别,省级还是市级
+	private Long ssqy;//所属区域,关联组织架构表的主键
+	private String recordcode;//
+	private String byzd1;
+	private String byzd2;
+	private String byzd3;
+	private String byzd4;
+	private String byzd5;
+	private String gisid;
+	public String getSzd() {
+		return szd;
+	}
+	public void setSzd(String szd) {
+		this.szd = szd;
+	}
+	public Long getSsgk() {
+		return ssgk;
+	}
+	public void setSsgk(Long ssgk) {
+		this.ssgk = ssgk;
+	}
+	public String getGqmc() {
+		return gqmc;
+	}
+	public void setGqmc(String gqmc) {
+		this.gqmc = gqmc;
+	}
+	public String getGqszsylx() {
+		return gqszsylx;
+	}
+	public void setGqszsylx(String gqszsylx) {
+		this.gqszsylx = gqszsylx;
+	}
+	public String getGqmj() {
+		return gqmj;
+	}
+	public void setGqmj(String gqmj) {
+		this.gqmj = gqmj;
+	}
+	public String getLymj() {
+		return lymj;
+	}
+	public void setLymj(String lymj) {
+		this.lymj = lymj;
+	}
+	public String getSyfw() {
+		return syfw;
+	}
+	public void setSyfw(String syfw) {
+		this.syfw = syfw;
+	}
+	public String getSymj() {
+		return symj;
+	}
+	public void setSymj(String symj) {
+		this.symj = symj;
+	}
+	public String getGqghmj() {
+		return gqghmj;
+	}
+	public void setGqghmj(String gqghmj) {
+		this.gqghmj = gqghmj;
+	}
+	public String getGhlymj() {
+		return ghlymj;
+	}
+	public void setGhlymj(String ghlymj) {
+		this.ghlymj = ghlymj;
+	}
+	public String getFgyscydghmj() {
+		return fgyscydghmj;
+	}
+	public void setFgyscydghmj(String fgyscydghmj) {
+		this.fgyscydghmj = fgyscydghmj;
+	}
+	public String getGhsymj() {
+		return ghsymj;
+	}
+	public void setGhsymj(String ghsymj) {
+		this.ghsymj = ghsymj;
+	}
+	public String getGqzraxcd() {
+		return gqzraxcd;
+	}
+	public void setGqzraxcd(String gqzraxcd) {
+		this.gqzraxcd = gqzraxcd;
+	}
+	public String getGymtaxcd() {
+		return gymtaxcd;
+	}
+	public void setGymtaxcd(String gymtaxcd) {
+		this.gymtaxcd = gymtaxcd;
+	}
+	public String getGqgkaxcd() {
+		return gqgkaxcd;
+	}
+	public void setGqgkaxcd(String gqgkaxcd) {
+		this.gqgkaxcd = gqgkaxcd;
+	}
+	public String getGkssysyaxcd() {
+		return gkssysyaxcd;
+	}
+	public void setGkssysyaxcd(String gkssysyaxcd) {
+		this.gkssysyaxcd = gkssysyaxcd;
+	}
+	public String getGqdmbdzdz() {
+		return gqdmbdzdz;
+	}
+	public void setGqdmbdzdz(String gqdmbdzdz) {
+		this.gqdmbdzdz = gqdmbdzdz;
+	}
+	public String getBz() {
+		return bz;
+	}
+	public void setBz(String bz) {
+		this.bz = bz;
+	}
+	public String getAdduser() {
+		return adduser;
+	}
+	public void setAdduser(String adduser) {
+		this.adduser = adduser;
+	}
+	public String getUpdateuser() {
+		return updateuser;
+	}
+	public void setUpdateuser(String updateuser) {
+		this.updateuser = updateuser;
+	}
+	public Long getRecordstatus() {
+		return recordstatus;
+	}
+	public void setRecordstatus(Long recordstatus) {
+		this.recordstatus = recordstatus;
+	}
+	public String getSftb() {
+		return sftb;
+	}
+	public void setSftb(String sftb) {
+		this.sftb = sftb;
+	}
+	public String getTbzt() {
+		return tbzt;
+	}
+	public void setTbzt(String tbzt) {
+		this.tbzt = tbzt;
+	}
+	public Long getTbdyid() {
+		return tbdyid;
+	}
+	public void setTbdyid(Long tbdyid) {
+		this.tbdyid = tbdyid;
+	}
+	public String getQylb() {
+		return qylb;
+	}
+	public void setQylb(String qylb) {
+		this.qylb = qylb;
+	}
+	public Long getSsqy() {
+		return ssqy;
+	}
+	public void setSsqy(Long ssqy) {
+		this.ssqy = ssqy;
+	}
+	public String getRecordcode() {
+		return recordcode;
+	}
+	public void setRecordcode(String recordcode) {
+		this.recordcode = recordcode;
+	}
+	public String getByzd1() {
+		return byzd1;
+	}
+	public void setByzd1(String byzd1) {
+		this.byzd1 = byzd1;
+	}
+	public String getByzd2() {
+		return byzd2;
+	}
+	public void setByzd2(String byzd2) {
+		this.byzd2 = byzd2;
+	}
+	public String getByzd3() {
+		return byzd3;
+	}
+	public void setByzd3(String byzd3) {
+		this.byzd3 = byzd3;
+	}
+	public String getByzd4() {
+		return byzd4;
+	}
+	public void setByzd4(String byzd4) {
+		this.byzd4 = byzd4;
+	}
+	public String getByzd5() {
+		return byzd5;
+	}
+	public void setByzd5(String byzd5) {
+		this.byzd5 = byzd5;
+	}
+	public String getGisid() {
+		return gisid;
+	}
+	public void setGisid(String gisid) {
+		this.gisid = gisid;
+	}
+	public Long getUuid() {
+		return uuid;
+	}
+	public void setUuid(Long uuid) {
+		this.uuid = uuid;
+	}
+	
+}

+ 183 - 0
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/model/WxhwModel.java

@@ -0,0 +1,183 @@
+package com.xt.js.gkaq.web.model;
+
+import com.xt.js.gkaq.common.BaseUUIDModel;
+/**
+ * 危险物品名称
+ * @author 李小虎    2016-10-31 
+ *
+ */
+public class WxhwModel extends BaseUUIDModel {
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 3491478469803786235L;
+	private String bh;//编号
+	private String mchsm;//名称和说明
+	private String ywmc;//英文名称
+	private String lbhxb;//类别和项别
+	private String cywxx;//次要危险性
+	private String bzlb;//包装类别
+	private String bz;//备注
+	private String tbzt;//同步状态
+	private Long tbdyid;//同步对应id
+	private String qylb;//区域类别
+	private Long ssqy;//所属区域
+	private String sftb;//是否同步
+	private String recordCode;
+	private String byzd1;//备用字段1
+	private String byzd2;//备用字段2
+	private String byzd3;//备用字段3
+	private String byzd4;//备用字段4
+	private String byzd5;//备用字段5
+	private String lhxz;//理化性质
+	private String aqffcs;//防范措施
+	private String szd;//所在地
+	private String hzwxx;//火灾危险性
+	private String dxdj;//毒性等级
+	private String wrlb;//污染类别
+	public String getBh() {
+		return bh;
+	}
+	public void setBh(String bh) {
+		this.bh = bh;
+	}
+	public String getMchsm() {
+		return mchsm;
+	}
+	public void setMchsm(String mchsm) {
+		this.mchsm = mchsm;
+	}
+	public String getYwmc() {
+		return ywmc;
+	}
+	public void setYwmc(String ywmc) {
+		this.ywmc = ywmc;
+	}
+	public String getLbhxb() {
+		return lbhxb;
+	}
+	public void setLbhxb(String lbhxb) {
+		this.lbhxb = lbhxb;
+	}
+	public String getCywxx() {
+		return cywxx;
+	}
+	public void setCywxx(String cywxx) {
+		this.cywxx = cywxx;
+	}
+	public String getBzlb() {
+		return bzlb;
+	}
+	public void setBzlb(String bzlb) {
+		this.bzlb = bzlb;
+	}
+	public String getBz() {
+		return bz;
+	}
+	public void setBz(String bz) {
+		this.bz = bz;
+	}
+	public String getTbzt() {
+		return tbzt;
+	}
+	public void setTbzt(String tbzt) {
+		this.tbzt = tbzt;
+	}
+	public Long getTbdyid() {
+		return tbdyid;
+	}
+	public void setTbdyid(Long tbdyid) {
+		this.tbdyid = tbdyid;
+	}
+	public String getQylb() {
+		return qylb;
+	}
+	public void setQylb(String qylb) {
+		this.qylb = qylb;
+	}
+	public Long getSsqy() {
+		return ssqy;
+	}
+	public void setSsqy(Long ssqy) {
+		this.ssqy = ssqy;
+	}
+	public String getSftb() {
+		return sftb;
+	}
+	public void setSftb(String sftb) {
+		this.sftb = sftb;
+	}
+	public String getRecordCode() {
+		return recordCode;
+	}
+	public void setRecordCode(String recordCode) {
+		this.recordCode = recordCode;
+	}
+	public String getByzd1() {
+		return byzd1;
+	}
+	public void setByzd1(String byzd1) {
+		this.byzd1 = byzd1;
+	}
+	public String getByzd2() {
+		return byzd2;
+	}
+	public void setByzd2(String byzd2) {
+		this.byzd2 = byzd2;
+	}
+	public String getByzd3() {
+		return byzd3;
+	}
+	public void setByzd3(String byzd3) {
+		this.byzd3 = byzd3;
+	}
+	public String getByzd4() {
+		return byzd4;
+	}
+	public void setByzd4(String byzd4) {
+		this.byzd4 = byzd4;
+	}
+	public String getByzd5() {
+		return byzd5;
+	}
+	public void setByzd5(String byzd5) {
+		this.byzd5 = byzd5;
+	}
+	public String getLhxz() {
+		return lhxz;
+	}
+	public void setLhxz(String lhxz) {
+		this.lhxz = lhxz;
+	}
+	public String getAqffcs() {
+		return aqffcs;
+	}
+	public void setAqffcs(String aqffcs) {
+		this.aqffcs = aqffcs;
+	}
+	public String getSzd() {
+		return szd;
+	}
+	public void setSzd(String szd) {
+		this.szd = szd;
+	}
+	public String getHzwxx() {
+		return hzwxx;
+	}
+	public void setHzwxx(String hzwxx) {
+		this.hzwxx = hzwxx;
+	}
+	public String getDxdj() {
+		return dxdj;
+	}
+	public void setDxdj(String dxdj) {
+		this.dxdj = dxdj;
+	}
+	public String getWrlb() {
+		return wrlb;
+	}
+	public void setWrlb(String wrlb) {
+		this.wrlb = wrlb;
+	}
+	
+}

+ 11 - 0
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/service/GqService.java

@@ -0,0 +1,11 @@
+package com.xt.js.gkaq.web.service;
+
+import java.util.List;
+
+import com.xt.js.gkaq.common.BaseService;
+import com.xt.js.gkaq.frame.model.ComboBoxDto;
+import com.xt.js.gkaq.web.model.GqModel;
+
+public interface GqService extends BaseService<GqModel> {
+	public List<ComboBoxDto> selectByInfo (GqModel model);
+}

+ 12 - 0
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/service/WxhwService.java

@@ -0,0 +1,12 @@
+package com.xt.js.gkaq.web.service;
+
+import java.util.List;
+
+import com.xt.js.gkaq.common.BaseService;
+import com.xt.js.gkaq.frame.model.ComboBoxDto;
+import com.xt.js.gkaq.web.model.GqModel;
+import com.xt.js.gkaq.web.model.WxhwModel;
+
+public interface WxhwService extends BaseService<WxhwModel> {
+	public List<WxhwModel> selectAll (WxhwModel model);
+}

+ 32 - 0
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/service/impl/GqServiceImpl.java

@@ -0,0 +1,32 @@
+package com.xt.js.gkaq.web.service.impl;
+
+import java.util.List;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.xt.js.gkaq.common.BaseMapper;
+import com.xt.js.gkaq.common.BaseServiceImpl;
+import com.xt.js.gkaq.frame.model.ComboBoxDto;
+import com.xt.js.gkaq.web.mappers.GqModelMapper;
+import com.xt.js.gkaq.web.model.GqModel;
+import com.xt.js.gkaq.web.service.GqService;
+
+@Service
+public class GqServiceImpl extends BaseServiceImpl<GqModel> implements GqService {
+	@Autowired
+	GqModelMapper mapper;
+	
+	@Override
+	protected BaseMapper<GqModel> getMapper() {
+		return mapper;
+	}
+	@Override
+	public List<ComboBoxDto> selectByInfo(GqModel model) {
+		List<ComboBoxDto> list = mapper.selectByInfo(model);
+		return list;
+	}
+
+	
+   
+}

+ 42 - 0
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/service/impl/WxhwServiceImpl.java

@@ -0,0 +1,42 @@
+package com.xt.js.gkaq.web.service.impl;
+
+import java.util.List;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import com.xt.js.gkaq.common.BaseMapper;
+import com.xt.js.gkaq.common.BaseServiceImpl;
+import com.xt.js.gkaq.frame.model.ComboBoxDto;
+import com.xt.js.gkaq.web.mappers.GqModelMapper;
+import com.xt.js.gkaq.web.mappers.WxhwModelMapper;
+import com.xt.js.gkaq.web.model.GqModel;
+import com.xt.js.gkaq.web.model.WxhwModel;
+import com.xt.js.gkaq.web.service.GqService;
+import com.xt.js.gkaq.web.service.WxhwService;
+/**
+ * 危险物品信息service
+ * @author LXh
+ *
+ */
+@Service
+public class WxhwServiceImpl extends BaseServiceImpl<WxhwModel> implements WxhwService {
+
+	@Autowired
+	private WxhwModelMapper mapper;
+	
+	@Override
+	protected BaseMapper<WxhwModel> getMapper() {
+		// TODO Auto-generated method stub
+		return mapper;
+	}
+	/**
+	 * 获取所有指定危险物品信息
+	 */
+	@Override
+	public List<WxhwModel> selectAll(WxhwModel model) {
+		return mapper.selectAll(model);
+	}
+
+	
+}

+ 549 - 0
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/vo/JyrjcxxVo.java

@@ -0,0 +1,549 @@
+package com.xt.js.gkaq.web.vo;
+
+import java.util.Date;
+
+import com.xt.js.gkaq.common.BaseVo;
+
+public class JyrjcxxVo extends BaseVo {
+	
+	private String id;
+	
+    private String szd;
+
+    private Long szgq;
+
+    private String gkjyr;
+
+    private String qyxz;
+
+    private String yzbm;
+
+    private String bgdz;
+
+    private String gkjyxkzh;
+
+    private String fzrq;
+
+    private String fzjg;
+
+    private String jyfw;
+
+    private String jyqy;
+
+    private String zyhz;
+
+    private String fddbr;
+
+    private String lxdh;
+
+    private String cz;
+
+    private String aqbmfzr;
+
+    private String aqfzrlxdh;
+
+    private String aqfzrsj;
+
+    private String gsyyzzbh;
+
+    private Long tzze;
+
+    private Long zczb;
+
+    private String gkwxhwzyfzbh;
+
+    private String gkssbafhzsbh;
+
+    private String bafzjg;
+
+    private String bafzrq;
+
+    private String bayxq;
+
+    private String zywxhwpm;
+
+    private String qylb;
+
+    private Long ssqy;
+
+    private String recordCode;
+
+    private String byzd1;
+
+    private String byzd2;
+
+    private String byzd3;
+
+    private String byzd4;
+
+    private String byzd5;
+
+    private String sfwhqy;
+
+    private String qylx;
+
+    private String fzyxq;
+
+    private String qyzzjgdm;
+
+    private Long sshydl;
+
+    private Long sshyz;
+
+    private String qyaqdj;
+
+    private Long rs;
+
+    private String aqzgbm;
+
+    private String aqgljg;
+
+    private Long zzagrysl;
+
+    private String zcze;
+
+    private String xsje;
+
+    private String aqfzrzbdh;
+
+    private String gjjgdm;
+
+    private String sfzdsp;
+
+    private Long parentJyrId;
+
+    private Long xzqh;
+
+    public String getSzd() {
+        return szd;
+    }
+
+    public void setSzd(String szd) {
+        this.szd = szd;
+    }
+
+    public Long getSzgq() {
+        return szgq;
+    }
+
+    public void setSzgq(Long szgq) {
+        this.szgq = szgq;
+    }
+
+    public String getGkjyr() {
+        return gkjyr;
+    }
+
+    public void setGkjyr(String gkjyr) {
+        this.gkjyr = gkjyr == null ? null : gkjyr.trim();
+    }
+
+    public String getQyxz() {
+        return qyxz;
+    }
+
+    public void setQyxz(String qyxz) {
+        this.qyxz = qyxz == null ? null : qyxz.trim();
+    }
+
+    public String getYzbm() {
+        return yzbm;
+    }
+
+    public void setYzbm(String yzbm) {
+        this.yzbm = yzbm == null ? null : yzbm.trim();
+    }
+
+    public String getBgdz() {
+        return bgdz;
+    }
+
+    public void setBgdz(String bgdz) {
+        this.bgdz = bgdz == null ? null : bgdz.trim();
+    }
+
+    public String getGkjyxkzh() {
+        return gkjyxkzh;
+    }
+
+    public void setGkjyxkzh(String gkjyxkzh) {
+        this.gkjyxkzh = gkjyxkzh == null ? null : gkjyxkzh.trim();
+    }
+
+    public String getFzrq() {
+        return fzrq;
+    }
+
+    public void setFzrq(String fzrq) {
+        this.fzrq = fzrq;
+    }
+
+    public String getFzjg() {
+        return fzjg;
+    }
+
+    public void setFzjg(String fzjg) {
+        this.fzjg = fzjg == null ? null : fzjg.trim();
+    }
+
+    public String getJyfw() {
+        return jyfw;
+    }
+
+    public void setJyfw(String jyfw) {
+        this.jyfw = jyfw == null ? null : jyfw.trim();
+    }
+
+    public String getJyqy() {
+        return jyqy;
+    }
+
+    public void setJyqy(String jyqy) {
+        this.jyqy = jyqy == null ? null : jyqy.trim();
+    }
+
+    public String getZyhz() {
+        return zyhz;
+    }
+
+    public void setZyhz(String zyhz) {
+        this.zyhz = zyhz == null ? null : zyhz.trim();
+    }
+
+    public String getFddbr() {
+        return fddbr;
+    }
+
+    public void setFddbr(String fddbr) {
+        this.fddbr = fddbr == null ? null : fddbr.trim();
+    }
+
+    public String getLxdh() {
+        return lxdh;
+    }
+
+    public void setLxdh(String lxdh) {
+        this.lxdh = lxdh == null ? null : lxdh.trim();
+    }
+
+    public String getCz() {
+        return cz;
+    }
+
+    public void setCz(String cz) {
+        this.cz = cz == null ? null : cz.trim();
+    }
+
+    public String getAqbmfzr() {
+        return aqbmfzr;
+    }
+
+    public void setAqbmfzr(String aqbmfzr) {
+        this.aqbmfzr = aqbmfzr == null ? null : aqbmfzr.trim();
+    }
+
+    public String getAqfzrlxdh() {
+        return aqfzrlxdh;
+    }
+
+    public void setAqfzrlxdh(String aqfzrlxdh) {
+        this.aqfzrlxdh = aqfzrlxdh == null ? null : aqfzrlxdh.trim();
+    }
+
+    public String getAqfzrsj() {
+        return aqfzrsj;
+    }
+
+    public void setAqfzrsj(String aqfzrsj) {
+        this.aqfzrsj = aqfzrsj == null ? null : aqfzrsj.trim();
+    }
+
+    public String getGsyyzzbh() {
+        return gsyyzzbh;
+    }
+
+    public void setGsyyzzbh(String gsyyzzbh) {
+        this.gsyyzzbh = gsyyzzbh == null ? null : gsyyzzbh.trim();
+    }
+
+    public Long getTzze() {
+        return tzze;
+    }
+
+    public void setTzze(Long tzze) {
+        this.tzze = tzze;
+    }
+
+    public Long getZczb() {
+        return zczb;
+    }
+
+    public void setZczb(Long zczb) {
+        this.zczb = zczb;
+    }
+
+    public String getGkwxhwzyfzbh() {
+        return gkwxhwzyfzbh;
+    }
+
+    public void setGkwxhwzyfzbh(String gkwxhwzyfzbh) {
+        this.gkwxhwzyfzbh = gkwxhwzyfzbh == null ? null : gkwxhwzyfzbh.trim();
+    }
+
+    public String getGkssbafhzsbh() {
+        return gkssbafhzsbh;
+    }
+
+    public void setGkssbafhzsbh(String gkssbafhzsbh) {
+        this.gkssbafhzsbh = gkssbafhzsbh == null ? null : gkssbafhzsbh.trim();
+    }
+
+    public String getBafzjg() {
+        return bafzjg;
+    }
+
+    public void setBafzjg(String bafzjg) {
+        this.bafzjg = bafzjg == null ? null : bafzjg.trim();
+    }
+
+    public String getBafzrq() {
+        return bafzrq;
+    }
+
+    public void setBafzrq(String bafzrq) {
+        this.bafzrq = bafzrq;
+    }
+
+    public String getBayxq() {
+        return bayxq;
+    }
+
+    public void setBayxq(String bayxq) {
+        this.bayxq = bayxq;
+    }
+
+    public String getZywxhwpm() {
+        return zywxhwpm;
+    }
+
+    public void setZywxhwpm(String zywxhwpm) {
+        this.zywxhwpm = zywxhwpm == null ? null : zywxhwpm.trim();
+    }
+
+    public String getQylb() {
+        return qylb;
+    }
+
+    public void setQylb(String qylb) {
+        this.qylb = qylb == null ? null : qylb.trim();
+    }
+
+    public Long getSsqy() {
+        return ssqy;
+    }
+
+    public void setSsqy(Long ssqy) {
+        this.ssqy = ssqy;
+    }
+
+    public String getRecordCode() {
+        return recordCode;
+    }
+
+    public void setRecordCode(String recordCode) {
+        this.recordCode = recordCode == null ? null : recordCode.trim();
+    }
+
+    public String getByzd1() {
+        return byzd1;
+    }
+
+    public void setByzd1(String byzd1) {
+        this.byzd1 = byzd1 == null ? null : byzd1.trim();
+    }
+
+    public String getByzd2() {
+        return byzd2;
+    }
+
+    public void setByzd2(String byzd2) {
+        this.byzd2 = byzd2 == null ? null : byzd2.trim();
+    }
+
+    public String getByzd3() {
+        return byzd3;
+    }
+
+    public void setByzd3(String byzd3) {
+        this.byzd3 = byzd3 == null ? null : byzd3.trim();
+    }
+
+    public String getByzd4() {
+        return byzd4;
+    }
+
+    public void setByzd4(String byzd4) {
+        this.byzd4 = byzd4 == null ? null : byzd4.trim();
+    }
+
+    public String getByzd5() {
+        return byzd5;
+    }
+
+    public void setByzd5(String byzd5) {
+        this.byzd5 = byzd5 == null ? null : byzd5.trim();
+    }
+
+    public String getSfwhqy() {
+        return sfwhqy;
+    }
+
+    public void setSfwhqy(String sfwhqy) {
+        this.sfwhqy = sfwhqy == null ? null : sfwhqy.trim();
+    }
+
+    public String getQylx() {
+        return qylx;
+    }
+
+    public void setQylx(String qylx) {
+        this.qylx = qylx == null ? null : qylx.trim();
+    }
+
+    public String getFzyxq() {
+        return fzyxq;
+    }
+
+    public void setFzyxq(String fzyxq) {
+        this.fzyxq = fzyxq;
+    }
+
+    public String getQyzzjgdm() {
+        return qyzzjgdm;
+    }
+
+    public void setQyzzjgdm(String qyzzjgdm) {
+        this.qyzzjgdm = qyzzjgdm == null ? null : qyzzjgdm.trim();
+    }
+
+    public Long getSshydl() {
+        return sshydl;
+    }
+
+    public void setSshydl(Long sshydl) {
+        this.sshydl = sshydl;
+    }
+
+    public Long getSshyz() {
+        return sshyz;
+    }
+
+    public void setSshyz(Long sshyz) {
+        this.sshyz = sshyz;
+    }
+
+    public String getQyaqdj() {
+        return qyaqdj;
+    }
+
+    public void setQyaqdj(String qyaqdj) {
+        this.qyaqdj = qyaqdj == null ? null : qyaqdj.trim();
+    }
+
+    public Long getRs() {
+        return rs;
+    }
+
+    public void setRs(Long rs) {
+        this.rs = rs;
+    }
+
+    public String getAqzgbm() {
+        return aqzgbm;
+    }
+
+    public void setAqzgbm(String aqzgbm) {
+        this.aqzgbm = aqzgbm == null ? null : aqzgbm.trim();
+    }
+
+    public String getAqgljg() {
+        return aqgljg;
+    }
+
+    public void setAqgljg(String aqgljg) {
+        this.aqgljg = aqgljg == null ? null : aqgljg.trim();
+    }
+
+    public Long getZzagrysl() {
+        return zzagrysl;
+    }
+
+    public void setZzagrysl(Long zzagrysl) {
+        this.zzagrysl = zzagrysl;
+    }
+
+    public String getZcze() {
+        return zcze;
+    }
+
+    public void setZcze(String zcze) {
+        this.zcze = zcze == null ? null : zcze.trim();
+    }
+
+    public String getXsje() {
+        return xsje;
+    }
+
+    public void setXsje(String xsje) {
+        this.xsje = xsje == null ? null : xsje.trim();
+    }
+
+    public String getAqfzrzbdh() {
+        return aqfzrzbdh;
+    }
+
+    public void setAqfzrzbdh(String aqfzrzbdh) {
+        this.aqfzrzbdh = aqfzrzbdh == null ? null : aqfzrzbdh.trim();
+    }
+
+    public String getGjjgdm() {
+        return gjjgdm;
+    }
+
+    public void setGjjgdm(String gjjgdm) {
+        this.gjjgdm = gjjgdm == null ? null : gjjgdm.trim();
+    }
+
+    public String getSfzdsp() {
+        return sfzdsp;
+    }
+
+    public void setSfzdsp(String sfzdsp) {
+        this.sfzdsp = sfzdsp == null ? null : sfzdsp.trim();
+    }
+
+    public Long getParentJyrId() {
+        return parentJyrId;
+    }
+
+    public void setParentJyrId(Long parentJyrId) {
+        this.parentJyrId = parentJyrId;
+    }
+
+    public Long getXzqh() {
+        return xzqh;
+    }
+
+    public void setXzqh(Long xzqh) {
+        this.xzqh = xzqh;
+    }
+
+	public String getId() {
+		return id;
+	}
+
+	public void setId(String id) {
+		this.id = id;
+	}
+    
+}

+ 187 - 0
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/vo/WxhwVo.java

@@ -0,0 +1,187 @@
+package com.xt.js.gkaq.web.vo;
+
+
+import com.xt.js.gkaq.common.BaseVo;
+
+public class WxhwVo extends BaseVo {
+	
+	private String id;
+	private String bh;//编号
+	private String mchsm;//名称和说明
+	private String ywmc;//英文名称
+	private String lbhxb;//类别和项别
+	private String cywxx;//次要危险性
+	private String bzlb;//包装类别
+	private String bz;//备注
+	private String tbzt;//同步状态
+	private Long tbdyid;//同步对应id
+	private String qylb;//区域类别
+	private Long ssqy;//所属区域
+	private String sftb;//是否同步
+	private String recordCode;
+	private String byzd1;//备用字段1
+	private String byzd2;//备用字段2
+	private String byzd3;//备用字段3
+	private String byzd4;//备用字段4
+	private String byzd5;//备用字段5
+	private String lhxz;//理化性质
+	private String aqffcs;//防范措施
+	private String szd;//所在地
+	private String hzwxx;//火灾危险性
+	private String dxdj;//毒性等级
+	private String wrlb;//污染类别
+	public String getBh() {
+		return bh;
+	}
+	public void setBh(String bh) {
+		this.bh = bh;
+	}
+	public String getMchsm() {
+		return mchsm;
+	}
+	public void setMchsm(String mchsm) {
+		this.mchsm = mchsm;
+	}
+	public String getYwmc() {
+		return ywmc;
+	}
+	public void setYwmc(String ywmc) {
+		this.ywmc = ywmc;
+	}
+	public String getLbhxb() {
+		return lbhxb;
+	}
+	public void setLbhxb(String lbhxb) {
+		this.lbhxb = lbhxb;
+	}
+	public String getCywxx() {
+		return cywxx;
+	}
+	public void setCywxx(String cywxx) {
+		this.cywxx = cywxx;
+	}
+	public String getBzlb() {
+		return bzlb;
+	}
+	public void setBzlb(String bzlb) {
+		this.bzlb = bzlb;
+	}
+	public String getBz() {
+		return bz;
+	}
+	public void setBz(String bz) {
+		this.bz = bz;
+	}
+	public String getTbzt() {
+		return tbzt;
+	}
+	public void setTbzt(String tbzt) {
+		this.tbzt = tbzt;
+	}
+	public Long getTbdyid() {
+		return tbdyid;
+	}
+	public void setTbdyid(Long tbdyid) {
+		this.tbdyid = tbdyid;
+	}
+	public String getQylb() {
+		return qylb;
+	}
+	public void setQylb(String qylb) {
+		this.qylb = qylb;
+	}
+	public Long getSsqy() {
+		return ssqy;
+	}
+	public void setSsqy(Long ssqy) {
+		this.ssqy = ssqy;
+	}
+	public String getSftb() {
+		return sftb;
+	}
+	public void setSftb(String sftb) {
+		this.sftb = sftb;
+	}
+	public String getRecordCode() {
+		return recordCode;
+	}
+	public void setRecordCode(String recordCode) {
+		this.recordCode = recordCode;
+	}
+	public String getByzd1() {
+		return byzd1;
+	}
+	public void setByzd1(String byzd1) {
+		this.byzd1 = byzd1;
+	}
+	public String getByzd2() {
+		return byzd2;
+	}
+	public void setByzd2(String byzd2) {
+		this.byzd2 = byzd2;
+	}
+	public String getByzd3() {
+		return byzd3;
+	}
+	public void setByzd3(String byzd3) {
+		this.byzd3 = byzd3;
+	}
+	public String getByzd4() {
+		return byzd4;
+	}
+	public void setByzd4(String byzd4) {
+		this.byzd4 = byzd4;
+	}
+	public String getByzd5() {
+		return byzd5;
+	}
+	public void setByzd5(String byzd5) {
+		this.byzd5 = byzd5;
+	}
+	public String getLhxz() {
+		return lhxz;
+	}
+	public void setLhxz(String lhxz) {
+		this.lhxz = lhxz;
+	}
+	public String getAqffcs() {
+		return aqffcs;
+	}
+	public void setAqffcs(String aqffcs) {
+		this.aqffcs = aqffcs;
+	}
+	public String getSzd() {
+		return szd;
+	}
+	public void setSzd(String szd) {
+		this.szd = szd;
+	}
+	public String getHzwxx() {
+		return hzwxx;
+	}
+	public void setHzwxx(String hzwxx) {
+		this.hzwxx = hzwxx;
+	}
+	public String getDxdj() {
+		return dxdj;
+	}
+	public void setDxdj(String dxdj) {
+		this.dxdj = dxdj;
+	}
+	public String getWrlb() {
+		return wrlb;
+	}
+	public void setWrlb(String wrlb) {
+		this.wrlb = wrlb;
+	}
+	
+
+	public String getId() {
+		return id;
+	}
+
+	public void setId(String id) {
+		this.id = id;
+	}
+    
+}