| | |
| | | private Double qty; |
| | | |
| | | /** |
| | | * 总数量 |
| | | */ |
| | | @ApiModelProperty(value= "总数量") |
| | | private Double total; |
| | | |
| | | /** |
| | | * 商品单价 |
| | | */ |
| | | @ApiModelProperty(value= "商品单价") |
| | |
| | | |
| | | public CustOrder() {} |
| | | |
| | | public CustOrder(String number,String billDate,String bTypeId,String eTypeId,String userCode,Double qty,Double price,String comment,Integer status,Date createTime,Date updateTime,String memo) { |
| | | public CustOrder(String number,String billDate,String bTypeId,String eTypeId,String userCode,Double qty,Double total,Double price,String comment,Integer status,Date createTime,Date updateTime,String memo) { |
| | | this.number = number; |
| | | this.billDate = billDate; |
| | | this.bTypeId = bTypeId; |
| | | this.eTypeId = eTypeId; |
| | | this.userCode = userCode; |
| | | this.qty = qty; |
| | | this.total = total; |
| | | this.price = price; |
| | | this.comment = comment; |
| | | this.status = status; |
| | |
| | | this.qty = qty; |
| | | } |
| | | |
| | | public Double getTotal() { |
| | | return total; |
| | | } |
| | | |
| | | public void setTotal(Double total) { |
| | | this.total = total; |
| | | } |
| | | |
| | | public Double getPrice() { |
| | | return price; |
| | | } |