| | |
| | | private Double cekQty; |
| | | |
| | | /** |
| | | * 差值 |
| | | */ |
| | | @ApiModelProperty(value= "差值") |
| | | @TableField("diff_qty") |
| | | private Double diffQty; |
| | | |
| | | /** |
| | | * 盈亏 1: 盘盈 2: 盘亏 |
| | | */ |
| | | @ApiModelProperty(value= "盈亏 1: 盘盈 2: 盘亏 ") |
| | |
| | | |
| | | public Check() {} |
| | | |
| | | public Check(String uuid,Long nodeId,String nodeUuid,String locNo,String matnr,String maktx,String unit,Long docId,String docNum,Double oriQty,Double cekQty,Integer settle,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { |
| | | public Check(String uuid,Long nodeId,String nodeUuid,String locNo,String matnr,String maktx,String unit,Long docId,String docNum,Double oriQty,Double cekQty,Double diffQty,Integer settle,Integer status,Long createBy,Date createTime,Long updateBy,Date updateTime,String memo) { |
| | | this.uuid = uuid; |
| | | this.nodeId = nodeId; |
| | | this.nodeUuid = nodeUuid; |
| | |
| | | this.docNum = docNum; |
| | | this.oriQty = oriQty; |
| | | this.cekQty = cekQty; |
| | | this.diffQty = diffQty; |
| | | this.settle = settle; |
| | | this.status = status; |
| | | this.createBy = createBy; |
| | |
| | | this.cekQty = cekQty; |
| | | } |
| | | |
| | | public Double getDiffQty() { |
| | | return diffQty; |
| | | } |
| | | |
| | | public void setDiffQty(Double diffQty) { |
| | | this.diffQty = diffQty; |
| | | } |
| | | |
| | | public Integer getSettle() { |
| | | return settle; |
| | | } |
| | |
| | | if (null == this.status){ return null; } |
| | | switch (this.status){ |
| | | case 1: |
| | | return "正常"; |
| | | return "待审核"; |
| | | case 2: |
| | | return "已通过"; |
| | | case 0: |
| | | return "禁用"; |
| | | return "取消"; |
| | | default: |
| | | return String.valueOf(this.status); |
| | | } |