/** * */ package com.chinaitop.depot.agile.model; /** * 粮食业务管理,进度查询. *
Title: BusinessScedule
*Description:
* @author yaoyabin * @date 2017年11月1日 下午8:04:31 */ public class BusinessScedule { // 可研报告号 对应 粮食业务管理中的计划id private String jhId; // 合同编号 对应 粮食业务管理中的合同id. private String htId; // 通知单号 对应 粮食业务管理中的通知单id. private String tzdId; // 仓廒作业类型 1:入库 3:出库 private String crkLx; // 入库数量. private String sumRksl; // 出库数量. private String sumCksl; //完成数量 private String sumWcsl; //剩余数量 private String sumSysl; //提货单号 private String thdh; public String getThdh() { return thdh; } public void setThdh(String thdh) { this.thdh = thdh; } public String getSumWcsl() { return sumWcsl; } public void setSumWcsl(String sumWcsl) { this.sumWcsl = sumWcsl; } /** * @return the jhId */ public String getJhId() { return jhId; } /** * @param jhId the jhId to set */ public void setJhId(String jhId) { this.jhId = jhId; } /** * @return the htId */ public String getHtId() { return htId; } /** * @param htId the htId to set */ public void setHtId(String htId) { this.htId = htId; } /** * @return the tzdId */ public String getTzdId() { return tzdId; } /** * @param tzdId the tzdId to set */ public void setTzdId(String tzdId) { this.tzdId = tzdId; } /** * @return the sumRksl */ public String getSumRksl() { return sumRksl; } /** * @param sumRksl the sumRksl to set */ public void setSumRksl(String sumRksl) { this.sumRksl = sumRksl; } /** * @return the sumCksl */ public String getSumCksl() { return sumCksl; } /** * @param sumCksl the sumCksl to set */ public void setSumCksl(String sumCksl) { this.sumCksl = sumCksl; } /** * @return the crkLx */ public String getCrkLx() { return crkLx; } /** * @param crkLx the crkLx to set */ public void setCrkLx(String crkLx) { this.crkLx = crkLx; } public String getSumSysl() { return sumSysl; } public void setSumSysl(String sumSysl) { this.sumSysl = sumSysl; } }