| | |
| | | detl0.getQty(), // 商品数量 |
| | | detl0.getQty(), // 总数量 |
| | | detl0.getPrice(), // 商品单价 |
| | | detl0.getRowNo(), // 商品明细行号 |
| | | detl0.getComment(), // 商品备注[非空] |
| | | 0, // 状态 |
| | | now, // 添加时间 |
| | |
| | | // 单行商品备注 |
| | | private String comment; |
| | | |
| | | // 商品明细行号 |
| | | private Double RowNo; |
| | | |
| | | } |
| | |
| | | private Double price; |
| | | |
| | | /** |
| | | * 商品单价 |
| | | */ |
| | | @ApiModelProperty(value= "商品单价") |
| | | @TableField("row_no") |
| | | private Double rowNo; |
| | | |
| | | /** |
| | | * 商品备注 |
| | | */ |
| | | @ApiModelProperty(value= "商品备注") |
| | |
| | | |
| | | public CustOrder() {} |
| | | |
| | | 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) { |
| | | public CustOrder(String number,String billDate,String bTypeId,String eTypeId,String userCode,Double qty,Double total,Double price, Double rowNo, String comment,Integer status,Date createTime,Date updateTime,String memo) { |
| | | this.number = number; |
| | | this.billDate = billDate; |
| | | this.bTypeId = bTypeId; |
| | |
| | | this.qty = qty; |
| | | this.total = total; |
| | | this.price = price; |
| | | this.rowNo = rowNo; |
| | | this.comment = comment; |
| | | this.status = status; |
| | | this.createTime = createTime; |
| | |
| | | this.price = price; |
| | | } |
| | | |
| | | public Double getRowNo() { |
| | | return rowNo; |
| | | } |
| | | |
| | | public void setRowNo(Double rowNo) { |
| | | this.rowNo = rowNo; |
| | | } |
| | | |
| | | public String getComment() { |
| | | return comment; |
| | | } |
| | |
| | | dto.getCount(), // 商品数量 |
| | | dto.getCount(), // 总数量 |
| | | Cools.isEmpty(mat.getName())?0.0D:Double.parseDouble(mat.getName()), // 商品单价 |
| | | null, // 商品明细行号 |
| | | null, // 商品备注[空] |
| | | 1, // 状态 |
| | | now, // 添加时间 |
| | |
| | | <result column="qty" property="qty" /> |
| | | <result column="total" property="total" /> |
| | | <result column="price" property="price" /> |
| | | <result column="row_no" property="rowNo" /> |
| | | <result column="comment" property="comment" /> |
| | | <result column="status" property="status" /> |
| | | <result column="create_time" property="createTime" /> |