| | |
| | | /** |
| | | * ERP 销售订单项 DO |
| | | * |
| | | * @author 芋道源码 |
| | | * @author 超级管理员 |
| | | */ |
| | | @TableName("erp_sale_order_items") |
| | | @KeySequence("erp_sale_order_items_seq") |
| | |
| | | private String remark; |
| | | |
| | | // ========== 销售出库 ========== |
| | | |
| | | /** |
| | | * 销售出库数量 |
| | | */ |
| | | private BigDecimal outCount; |
| | | |
| | | // ========== 销售退货(入库)) ========== |
| | | // ========== 生产关联 ========== |
| | | |
| | | /** |
| | | * 销售退货数量 |
| | | * 是否需要生产(0=否 1=是) |
| | | */ |
| | | private BigDecimal returnCount; |
| | | private Integer needProduction; |
| | | |
| | | /** |
| | | * 关联的 MPS 编号 |
| | | * |
| | | * 关联 {@link cn.iocoder.yudao.module.mes.dal.dataobject.pro.mps.MesProMpsDO#getId()} |
| | | */ |
| | | private Long mpsId; |
| | | |
| | | } |