ソースを参照

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

ld_lixh 8 年 前
コミット
09fd949548

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

@@ -0,0 +1,206 @@
+package com.xt.js.gkaq.web.ctl;
+
+import java.text.ParseException;
+import java.util.List;
+
+import javax.servlet.http.HttpServletRequest;
+
+import org.springframework.beans.BeanUtils;
+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.alibaba.fastjson.JSONArray;
+import com.xt.js.gkaq.common.BaseCtl;
+import com.xt.js.gkaq.common.BaseUUIDModel;
+import com.xt.js.gkaq.dwxx.model.JyrjcxxInfol;
+import com.xt.js.gkaq.dwxx.model.JyrjcxxModel;
+import com.xt.js.gkaq.dwxx.service.JyrjcxxService;
+import com.xt.js.gkaq.frame.model.ComboBoxDto;
+import com.xt.js.gkaq.frame.service.CodeService;
+import com.xt.js.gkaq.web.model.GqModel;
+import com.xt.js.gkaq.web.model.zdhqdExtendModel;
+import com.xt.js.gkaq.web.model.zdhqdModel;
+import com.xt.js.gkaq.web.service.GqService;
+import com.xt.js.gkaq.web.service.ZdhqdService;
+import com.xt.js.gkaq.web.vo.ZdhqdExtendVo;
+import com.xt.js.gkaq.web.vo.ZdhqdVo;
+import com.yuanxd.tools.pagehelper.PageHelper;
+import com.yuanxd.tools.pagehelper.PageInfo;
+import com.yuanxd.tools.utils.WebJsonResult;
+import com.yuanxd.tools.utils.string.StringUtils;
+
+@Controller
+@RequestMapping(value = "/glzd", produces = "application/json; charset=utf-8")
+public class ZdhqdCtl extends BaseCtl {
+    @Autowired
+    private ZdhqdService zdhqdService;
+    @Autowired
+    private JyrjcxxService jyrjcxxService;
+    @Autowired
+    private CodeService codeService;
+    @Autowired
+    private GqService gqService;
+
+    @RequestMapping("")
+    public String main(HttpServletRequest request) {
+    	//加载所在地
+    	List<ComboBoxDto> list = codeService.findByPcode("DM_SZD");
+    	request.setAttribute("code", list);
+        return "dwxx/glzd/main";
+    }
+    /**
+     * 加载所在地
+     * @return
+     */
+    @RequestMapping("getszd")
+    @ResponseBody
+    public String getszd() {
+    	//加载所在地
+    	List<ComboBoxDto> list = codeService.findByPcode("DM_SZD");
+    	return JSONArray.toJSONString(list);
+    }
+    /**
+     * 加载制度分类
+     * @return
+     */
+    @RequestMapping("getzdfl")
+    @ResponseBody
+    public String getZdfl() {
+    	//加载制度分类
+    	List<ComboBoxDto> list = codeService.findByPcode("ZYFZZBZZDGC");
+    	return JSONArray.toJSONString(list);
+    }
+    /***
+     * 动态关联下拉框数据
+     * @param request
+     * @param szd
+     * @return
+     */
+    @RequestMapping("getGq")
+    @ResponseBody
+    public String getGq(HttpServletRequest request,String szd) {
+    	GqModel model = new GqModel();
+    	model.setSzd(szd);
+    	//获取港区
+    	List<ComboBoxDto> gqlist = gqService.selectByInfo(model);
+    	return JSONArray.toJSONString(gqlist);
+    }
+    /**
+     * 数据表格
+     * @param vo
+     * @return
+     */
+    @RequestMapping("list")
+    @ResponseBody
+    public PageInfo<zdhqdExtendModel> list(ZdhqdExtendVo vo) {
+		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());
+		
+		zdhqdExtendModel model = new zdhqdExtendModel();
+		BeanUtils.copyProperties(vo, model);
+		
+		List<zdhqdExtendModel> list = zdhqdService.selectByInfo(model);
+		PageInfo<zdhqdExtendModel> pageResult = new PageInfo<>(list);
+		
+		return pageResult;
+    }
+    
+    /**
+     * 编辑详情
+     * @return
+     */
+    @RequestMapping("initEdit")
+    @ResponseBody
+    public String initEdit (String id,HttpServletRequest request) {
+    	zdhqdModel model = zdhqdService.findById(id);
+    	return JSONArray.toJSONString(model);
+    } 
+    
+    /**
+     * 添加或修改
+     * @param vo
+     * @return
+     * @throws ParseException 
+     */
+    @RequestMapping("save")
+    @ResponseBody
+    public WebJsonResult save (ZdhqdVo vo) throws ParseException {
+    	if (StringUtils.isEmpty(vo.getId())) {
+    		//添加
+    		zdhqdModel model = new zdhqdModel();
+    		BeanUtils.copyProperties(vo, model);
+    	
+    		zdhqdService.add(model);
+    	} else {
+    		//修改
+    		zdhqdModel model = zdhqdService.findById(vo.getId());
+    		BeanUtils.copyProperties(vo, model);
+    		zdhqdService.update(model);
+    	}
+    	return success();
+    }
+    
+    /**
+     * 删除信息,可多条删除
+     * @param ids
+     * @return
+     */
+    @RequestMapping("delJyrInfo")
+    @ResponseBody
+    public WebJsonResult delJyrInfo (String ids) {
+    	String[] idArray = ids.split(",");
+    	if (idArray != null && idArray.length > 0 ) {
+    		for (String id : idArray) {
+        		//修改
+        		zdhqdModel model = zdhqdService.findById(id);
+        		model.setState(BaseUUIDModel.STATE_DELETE);
+        		zdhqdService.update(model);
+    		}
+    	}
+    	return success();
+    }
+    /**
+     * 导出
+     * @param model
+     * @param request
+     * @param response
+     */
+//    @RequestMapping("printJyrInfo")
+//    @ResponseBody
+//    public void printJyrInfo (JyrjcxxModel model,HttpServletRequest request,HttpServletResponse response) {
+//		
+//    	List<JyrInfoExcelModel> list = jyrjcxxService.selectExcelList(model);
+//    	//数据加工处理
+//    	for (int i = 0; i < list.size(); i++) {
+//    		JyrInfoExcelModel jyr = list.get(0);
+//    		if (jyr.getSfwhqy() != null && !"".equals(jyr.getSfwhqy())) {
+//    			if ("Y".equals(jyr.getSfwhqy())) {
+//    				jyr.setSfwhqy("是");
+//    			} else if ("W".equals(jyr.getSfwhqy())) {
+//    				jyr.setSfwhqy("是");
+//    			} else if ("N".equals(jyr.getSfwhqy())) {
+//    				jyr.setSfwhqy("否");
+//    			}
+//    			if ("Y".equals(jyr.getSfwhqy2())) {
+//    				jyr.setSfwhqy2("是");
+//    			} else if ("W".equals(jyr.getSfwhqy2())) {
+//    				jyr.setSfwhqy2("否");
+//    			} else if ("N".equals(jyr.getSfwhqy2())) {
+//    				jyr.setSfwhqy2("否");
+//    			}
+//    			list.remove(0);
+//    			list.add(jyr);
+//    		}	
+//		}
+//    	ExportExcel<JyrInfoExcelModel> excel = new ExportExcel<JyrInfoExcelModel>();
+//    	String[] heads = {"经营人名称","类别","是否危货企业","有无重大危险源","港口经营许可证","港口危险作业附证编号","经营范围","法定代表人","安全部门负责人","值班电话","所在地","所在港区"};
+//    	excel.exportExcel("经营人管理信息", heads , list, request, response);
+//    }
+   
+}

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

@@ -1,16 +1,10 @@
 package com.xt.js.gkaq.web.mappers;
 
+import com.xt.js.gkaq.common.BaseMapper;
+import com.xt.js.gkaq.web.model.zdhqdExtendModel;
 import com.xt.js.gkaq.web.model.zdhqdModel;
 import java.util.List;
 
-public interface zdhqdModelMapper {
-    int deleteByPrimaryKey(String id);
-
-    int insert(zdhqdModel record);
-
-    zdhqdModel selectByPrimaryKey(String id);
-
-    List<zdhqdModel> selectAll();
-
-    int updateByPrimaryKey(zdhqdModel record);
+public interface zdhqdModelMapper extends BaseMapper<zdhqdModel> {
+	List<zdhqdExtendModel> selectByInfo(zdhqdExtendModel model);
 }

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

@@ -0,0 +1,79 @@
+package com.xt.js.gkaq.web.model;
+/**
+ * 管理制度扩展Model
+ * @author LXH
+ *
+ */
+public class zdhqdExtendModel {
+	private String id;//id
+	private String zdmc;//制度名称
+	private String gkjyr;//港口经营人
+	private String zdfl;//制度分类
+	private String fbrq;//发布日期
+	private String xdrq;//修订日期
+	private String lxr;//联系人
+	private String lxdh;//联系电话
+	private String szd;//所在地
+	private String gqmc;//所在港区
+	public String getId() {
+		return id;
+	}
+	public void setId(String id) {
+		this.id = id;
+	}
+	public String getZdmc() {
+		return zdmc;
+	}
+	public void setZdmc(String zdmc) {
+		this.zdmc = zdmc;
+	}
+	public String getGkjyr() {
+		return gkjyr;
+	}
+	public void setGkjyr(String gkjyr) {
+		this.gkjyr = gkjyr;
+	}
+	public String getZdfl() {
+		return zdfl;
+	}
+	public void setZdfl(String zdfl) {
+		this.zdfl = zdfl;
+	}
+	public String getFbrq() {
+		return fbrq;
+	}
+	public void setFbrq(String fbrq) {
+		this.fbrq = fbrq;
+	}
+	public String getXdrq() {
+		return xdrq;
+	}
+	public void setXdrq(String xdrq) {
+		this.xdrq = xdrq;
+	}
+	public String getLxr() {
+		return lxr;
+	}
+	public void setLxr(String lxr) {
+		this.lxr = lxr;
+	}
+	public String getLxdh() {
+		return lxdh;
+	}
+	public void setLxdh(String lxdh) {
+		this.lxdh = lxdh;
+	}
+	public String getSzd() {
+		return szd;
+	}
+	public void setSzd(String szd) {
+		this.szd = szd;
+	}
+	public String getGqmc() {
+		return gqmc;
+	}
+	public void setGqmc(String gqmc) {
+		this.gqmc = gqmc;
+	}
+	
+}

+ 146 - 192
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/model/zdhqdModel.java

@@ -2,10 +2,20 @@ package com.xt.js.gkaq.web.model;
 
 import java.util.Date;
 
-public class zdhqdModel {
-    private String id;
+import com.xt.js.gkaq.common.BaseUUIDModel;
+/**
+ * ¹ÜÀíÖÆ¶È
+ * @author Administrator
+ *
+ */
+public class zdhqdModel extends BaseUUIDModel {
 
-    private String bxdw;
+    /**
+	 * 
+	 */
+	private static final long serialVersionUID = -4495098398736737072L;
+
+	private String bxdw;
 
     private String szd;
 
@@ -25,8 +35,6 @@ public class zdhqdModel {
 
     private String ssgq;
 
-    private String state;
-
     private String sftb;
 
     private String tbzt;
@@ -51,235 +59,181 @@ public class zdhqdModel {
 
     private String lxr;
 
-    private String createUser;
-
-    private Date createTime;
-
-    private String updateUser;
-
-    private Date updateTime;
-
-    public String getId() {
-        return id;
-    }
-
-    public void setId(String id) {
-        this.id = id == null ? null : id.trim();
-    }
-
-    public String getBxdw() {
-        return bxdw;
-    }
-
-    public void setBxdw(String bxdw) {
-        this.bxdw = bxdw == null ? null : bxdw.trim();
-    }
-
-    public String getSzd() {
-        return szd;
-    }
-
-    public void setSzd(String szd) {
-        this.szd = szd == null ? null : szd.trim();
-    }
-
-    public String getSzgq() {
-        return szgq;
-    }
-
-    public void setSzgq(String szgq) {
-        this.szgq = szgq == null ? null : szgq.trim();
-    }
-
-    public String getZdmc() {
-        return zdmc;
-    }
-
-    public void setZdmc(String zdmc) {
-        this.zdmc = zdmc == null ? null : zdmc.trim();
-    }
-
-    public String getZdfl() {
-        return zdfl;
-    }
-
-    public void setZdfl(String zdfl) {
-        this.zdfl = zdfl == null ? null : zdfl.trim();
-    }
+	public String getBxdw() {
+		return bxdw;
+	}
 
-    public Date getTxsj() {
-        return txsj;
-    }
+	public void setBxdw(String bxdw) {
+		this.bxdw = bxdw;
+	}
 
-    public void setTxsj(Date txsj) {
-        this.txsj = txsj;
-    }
+	public String getSzd() {
+		return szd;
+	}
 
-    public String getTbr() {
-        return tbr;
-    }
+	public void setSzd(String szd) {
+		this.szd = szd;
+	}
 
-    public void setTbr(String tbr) {
-        this.tbr = tbr == null ? null : tbr.trim();
-    }
+	public String getSzgq() {
+		return szgq;
+	}
 
-    public String getLxdh() {
-        return lxdh;
-    }
+	public void setSzgq(String szgq) {
+		this.szgq = szgq;
+	}
 
-    public void setLxdh(String lxdh) {
-        this.lxdh = lxdh == null ? null : lxdh.trim();
-    }
+	public String getZdmc() {
+		return zdmc;
+	}
 
-    public String getQymc() {
-        return qymc;
-    }
+	public void setZdmc(String zdmc) {
+		this.zdmc = zdmc;
+	}
 
-    public void setQymc(String qymc) {
-        this.qymc = qymc == null ? null : qymc.trim();
-    }
+	public String getZdfl() {
+		return zdfl;
+	}
 
-    public String getSsgq() {
-        return ssgq;
-    }
+	public void setZdfl(String zdfl) {
+		this.zdfl = zdfl;
+	}
 
-    public void setSsgq(String ssgq) {
-        this.ssgq = ssgq == null ? null : ssgq.trim();
-    }
+	public Date getTxsj() {
+		return txsj;
+	}
 
-    public String getState() {
-        return state;
-    }
+	public void setTxsj(Date txsj) {
+		this.txsj = txsj;
+	}
 
-    public void setState(String state) {
-        this.state = state == null ? null : state.trim();
-    }
+	public String getTbr() {
+		return tbr;
+	}
 
-    public String getSftb() {
-        return sftb;
-    }
+	public void setTbr(String tbr) {
+		this.tbr = tbr;
+	}
 
-    public void setSftb(String sftb) {
-        this.sftb = sftb == null ? null : sftb.trim();
-    }
+	public String getLxdh() {
+		return lxdh;
+	}
 
-    public String getTbzt() {
-        return tbzt;
-    }
+	public void setLxdh(String lxdh) {
+		this.lxdh = lxdh;
+	}
 
-    public void setTbzt(String tbzt) {
-        this.tbzt = tbzt == null ? null : tbzt.trim();
-    }
+	public String getQymc() {
+		return qymc;
+	}
 
-    public String getTbdyid() {
-        return tbdyid;
-    }
+	public void setQymc(String qymc) {
+		this.qymc = qymc;
+	}
 
-    public void setTbdyid(String tbdyid) {
-        this.tbdyid = tbdyid == null ? null : tbdyid.trim();
-    }
+	public String getSsgq() {
+		return ssgq;
+	}
 
-    public String getQylb() {
-        return qylb;
-    }
+	public void setSsgq(String ssgq) {
+		this.ssgq = ssgq;
+	}
 
-    public void setQylb(String qylb) {
-        this.qylb = qylb == null ? null : qylb.trim();
-    }
+	public String getSftb() {
+		return sftb;
+	}
 
-    public String getSsqy() {
-        return ssqy;
-    }
+	public void setSftb(String sftb) {
+		this.sftb = sftb;
+	}
 
-    public void setSsqy(String ssqy) {
-        this.ssqy = ssqy == null ? null : ssqy.trim();
-    }
+	public String getTbzt() {
+		return tbzt;
+	}
 
-    public String getOrgCode() {
-        return orgCode;
-    }
+	public void setTbzt(String tbzt) {
+		this.tbzt = tbzt;
+	}
 
-    public void setOrgCode(String orgCode) {
-        this.orgCode = orgCode == null ? null : orgCode.trim();
-    }
+	public String getTbdyid() {
+		return tbdyid;
+	}
 
-    public String getZdwh() {
-        return zdwh;
-    }
+	public void setTbdyid(String tbdyid) {
+		this.tbdyid = tbdyid;
+	}
 
-    public void setZdwh(String zdwh) {
-        this.zdwh = zdwh == null ? null : zdwh.trim();
-    }
+	public String getQylb() {
+		return qylb;
+	}
 
-    public Date getFbrq() {
-        return fbrq;
-    }
+	public void setQylb(String qylb) {
+		this.qylb = qylb;
+	}
 
-    public void setFbrq(Date fbrq) {
-        this.fbrq = fbrq;
-    }
+	public String getSsqy() {
+		return ssqy;
+	}
 
-    public Date getXdrq() {
-        return xdrq;
-    }
+	public void setSsqy(String ssqy) {
+		this.ssqy = ssqy;
+	}
 
-    public void setXdrq(Date xdrq) {
-        this.xdrq = xdrq;
-    }
+	public String getOrgCode() {
+		return orgCode;
+	}
 
-    public String getSfczgc() {
-        return sfczgc;
-    }
+	public void setOrgCode(String orgCode) {
+		this.orgCode = orgCode;
+	}
 
-    public void setSfczgc(String sfczgc) {
-        this.sfczgc = sfczgc == null ? null : sfczgc.trim();
-    }
+	public String getZdwh() {
+		return zdwh;
+	}
 
-    public String getZyfzId() {
-        return zyfzId;
-    }
+	public void setZdwh(String zdwh) {
+		this.zdwh = zdwh;
+	}
 
-    public void setZyfzId(String zyfzId) {
-        this.zyfzId = zyfzId == null ? null : zyfzId.trim();
-    }
+	public Date getFbrq() {
+		return fbrq;
+	}
 
-    public String getLxr() {
-        return lxr;
-    }
+	public void setFbrq(Date fbrq) {
+		this.fbrq = fbrq;
+	}
 
-    public void setLxr(String lxr) {
-        this.lxr = lxr == null ? null : lxr.trim();
-    }
+	public Date getXdrq() {
+		return xdrq;
+	}
 
-    public String getCreateUser() {
-        return createUser;
-    }
+	public void setXdrq(Date xdrq) {
+		this.xdrq = xdrq;
+	}
 
-    public void setCreateUser(String createUser) {
-        this.createUser = createUser == null ? null : createUser.trim();
-    }
+	public String getSfczgc() {
+		return sfczgc;
+	}
 
-    public Date getCreateTime() {
-        return createTime;
-    }
+	public void setSfczgc(String sfczgc) {
+		this.sfczgc = sfczgc;
+	}
 
-    public void setCreateTime(Date createTime) {
-        this.createTime = createTime;
-    }
+	public String getZyfzId() {
+		return zyfzId;
+	}
 
-    public String getUpdateUser() {
-        return updateUser;
-    }
+	public void setZyfzId(String zyfzId) {
+		this.zyfzId = zyfzId;
+	}
 
-    public void setUpdateUser(String updateUser) {
-        this.updateUser = updateUser == null ? null : updateUser.trim();
-    }
+	public String getLxr() {
+		return lxr;
+	}
 
-    public Date getUpdateTime() {
-        return updateTime;
-    }
+	public void setLxr(String lxr) {
+		this.lxr = lxr;
+	}
 
-    public void setUpdateTime(Date updateTime) {
-        this.updateTime = updateTime;
-    }
+    
 }

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

@@ -0,0 +1,11 @@
+package com.xt.js.gkaq.web.service;
+
+import java.util.List;
+
+import com.xt.js.gkaq.common.BaseUUIDModelService;
+import com.xt.js.gkaq.web.model.zdhqdExtendModel;
+import com.xt.js.gkaq.web.model.zdhqdModel;
+
+public interface ZdhqdService extends BaseUUIDModelService<zdhqdModel> {
+	List<zdhqdExtendModel> selectByInfo(zdhqdExtendModel model);
+}

+ 32 - 0
gkaqv2/trunk/modules/web/src/main/java/com/xt/js/gkaq/web/service/impl/ZdhqdServiceImpl.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.BaseUUIDModelServiceImpl;
+import com.xt.js.gkaq.web.mappers.zdhqdModelMapper;
+import com.xt.js.gkaq.web.model.zdhqdExtendModel;
+import com.xt.js.gkaq.web.model.zdhqdModel;
+import com.xt.js.gkaq.web.service.ZdhqdService;
+
+@Service
+public class ZdhqdServiceImpl extends BaseUUIDModelServiceImpl<zdhqdModel> implements ZdhqdService {
+	@Autowired
+	zdhqdModelMapper mapper;
+	
+	@Override
+	protected BaseMapper<zdhqdModel> getMapper() {
+		return mapper;
+	}
+
+	@Override
+	public List<zdhqdExtendModel> selectByInfo(zdhqdExtendModel model) {
+		return mapper.selectByInfo(model);
+	}
+	
+	
+   
+}

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

@@ -0,0 +1,82 @@
+package com.xt.js.gkaq.web.vo;
+
+import com.xt.js.gkaq.common.BaseVo;
+
+/**
+ * 管理制度扩展Vo
+ * @author LXH
+ *
+ */
+public class ZdhqdExtendVo extends BaseVo {
+	private String id;//id
+	private String zdmc;//制度名称
+	private String gkjyr;//港口经营人
+	private String zdfl;//制度分类
+	private String fbrq;//发布日期
+	private String xdrq;//修订日期
+	private String lxr;//联系人
+	private String lxdh;//联系电话
+	private String szd;//所在地
+	private String gqmc;//所在港区
+	public String getId() {
+		return id;
+	}
+	public void setId(String id) {
+		this.id = id;
+	}
+	public String getZdmc() {
+		return zdmc;
+	}
+	public void setZdmc(String zdmc) {
+		this.zdmc = zdmc;
+	}
+	public String getGkjyr() {
+		return gkjyr;
+	}
+	public void setGkjyr(String gkjyr) {
+		this.gkjyr = gkjyr;
+	}
+	public String getZdfl() {
+		return zdfl;
+	}
+	public void setZdfl(String zdfl) {
+		this.zdfl = zdfl;
+	}
+	public String getFbrq() {
+		return fbrq;
+	}
+	public void setFbrq(String fbrq) {
+		this.fbrq = fbrq;
+	}
+	public String getXdrq() {
+		return xdrq;
+	}
+	public void setXdrq(String xdrq) {
+		this.xdrq = xdrq;
+	}
+	public String getLxr() {
+		return lxr;
+	}
+	public void setLxr(String lxr) {
+		this.lxr = lxr;
+	}
+	public String getLxdh() {
+		return lxdh;
+	}
+	public void setLxdh(String lxdh) {
+		this.lxdh = lxdh;
+	}
+	public String getSzd() {
+		return szd;
+	}
+	public void setSzd(String szd) {
+		this.szd = szd;
+	}
+	public String getGqmc() {
+		return gqmc;
+	}
+	public void setGqmc(String gqmc) {
+		this.gqmc = gqmc;
+	}
+	
+}

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

@@ -0,0 +1,243 @@
+package com.xt.js.gkaq.web.vo;
+
+import java.util.Date;
+
+import com.xt.js.gkaq.common.BaseVo;
+/**
+ * ¹ÜÀíÖÆ¶È
+ * @author Administrator
+ *
+ */
+public class ZdhqdVo extends BaseVo {
+
+	private String id;
+	private String bxdw;
+
+    private String szd;
+
+    private String szgq;
+
+    private String zdmc;
+
+    private String zdfl;
+
+    private Date txsj;
+
+    private String tbr;
+
+    private String lxdh;
+
+    private String qymc;
+
+    private String ssgq;
+
+    private String sftb;
+
+    private String tbzt;
+
+    private String tbdyid;
+
+    private String qylb;
+
+    private String ssqy;
+
+    private String orgCode;
+
+    private String zdwh;
+
+    private Date fbrq;
+
+    private Date xdrq;
+
+    private String sfczgc;
+
+    private String zyfzId;
+
+    private String lxr;
+
+	public String getId() {
+		return id;
+	}
+
+	public void setId(String id) {
+		this.id = id;
+	}
+
+	public String getBxdw() {
+		return bxdw;
+	}
+
+	public void setBxdw(String bxdw) {
+		this.bxdw = bxdw;
+	}
+
+	public String getSzd() {
+		return szd;
+	}
+
+	public void setSzd(String szd) {
+		this.szd = szd;
+	}
+
+	public String getSzgq() {
+		return szgq;
+	}
+
+	public void setSzgq(String szgq) {
+		this.szgq = szgq;
+	}
+
+	public String getZdmc() {
+		return zdmc;
+	}
+
+	public void setZdmc(String zdmc) {
+		this.zdmc = zdmc;
+	}
+
+	public String getZdfl() {
+		return zdfl;
+	}
+
+	public void setZdfl(String zdfl) {
+		this.zdfl = zdfl;
+	}
+
+	public Date getTxsj() {
+		return txsj;
+	}
+
+	public void setTxsj(Date txsj) {
+		this.txsj = txsj;
+	}
+
+	public String getTbr() {
+		return tbr;
+	}
+
+	public void setTbr(String tbr) {
+		this.tbr = tbr;
+	}
+
+	public String getLxdh() {
+		return lxdh;
+	}
+
+	public void setLxdh(String lxdh) {
+		this.lxdh = lxdh;
+	}
+
+	public String getQymc() {
+		return qymc;
+	}
+
+	public void setQymc(String qymc) {
+		this.qymc = qymc;
+	}
+
+	public String getSsgq() {
+		return ssgq;
+	}
+
+	public void setSsgq(String ssgq) {
+		this.ssgq = ssgq;
+	}
+
+	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 String getTbdyid() {
+		return tbdyid;
+	}
+
+	public void setTbdyid(String tbdyid) {
+		this.tbdyid = tbdyid;
+	}
+
+	public String getQylb() {
+		return qylb;
+	}
+
+	public void setQylb(String qylb) {
+		this.qylb = qylb;
+	}
+
+	public String getSsqy() {
+		return ssqy;
+	}
+
+	public void setSsqy(String ssqy) {
+		this.ssqy = ssqy;
+	}
+
+	public String getOrgCode() {
+		return orgCode;
+	}
+
+	public void setOrgCode(String orgCode) {
+		this.orgCode = orgCode;
+	}
+
+	public String getZdwh() {
+		return zdwh;
+	}
+
+	public void setZdwh(String zdwh) {
+		this.zdwh = zdwh;
+	}
+
+	public Date getFbrq() {
+		return fbrq;
+	}
+
+	public void setFbrq(Date fbrq) {
+		this.fbrq = fbrq;
+	}
+
+	public Date getXdrq() {
+		return xdrq;
+	}
+
+	public void setXdrq(Date xdrq) {
+		this.xdrq = xdrq;
+	}
+
+	public String getSfczgc() {
+		return sfczgc;
+	}
+
+	public void setSfczgc(String sfczgc) {
+		this.sfczgc = sfczgc;
+	}
+
+	public String getZyfzId() {
+		return zyfzId;
+	}
+
+	public void setZyfzId(String zyfzId) {
+		this.zyfzId = zyfzId;
+	}
+
+	public String getLxr() {
+		return lxr;
+	}
+
+	public void setLxr(String lxr) {
+		this.lxr = lxr;
+	}
+
+    
+}