123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- /**
- *
- */
- package com.chinaitop.depot.agile.model;
- /**
- * 粮食业务管理,进度查询.
- * <p>Title: BusinessScedule</p>
- * <p>Description: </p>
- * @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;
- }
-
- }
|