add:aps_sale_type,对应aps订单类型。
This commit is contained in:
@@ -23,199 +23,198 @@ import lombok.EqualsAndHashCode;
|
|||||||
@EqualsAndHashCode(callSuper = false)
|
@EqualsAndHashCode(callSuper = false)
|
||||||
@TableName("mps_sale_order")
|
@TableName("mps_sale_order")
|
||||||
public class MpsSaleOrder implements Serializable{
|
public class MpsSaleOrder implements Serializable{
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
/**
|
||||||
|
* 销售单标识
|
||||||
/**
|
*/
|
||||||
* 销售单标识
|
@TableId(type = IdType.ASSIGN_ID)
|
||||||
*/
|
@ApiModelProperty(value = "/**销售单标识*/")
|
||||||
@TableId(type = IdType.ASSIGN_ID)
|
private String sale_id;
|
||||||
@ApiModelProperty(value = "/**销售单标识*/")
|
/**
|
||||||
private String sale_id;
|
* 销售单号
|
||||||
/**
|
*/
|
||||||
* 销售单号
|
@ApiModelProperty(value = "/**销售单号*/")
|
||||||
*/
|
private String sale_code;
|
||||||
@ApiModelProperty(value = "/**销售单号*/")
|
/**
|
||||||
private String sale_code;
|
* 明细序号
|
||||||
/**
|
*/
|
||||||
* 明细序号
|
@ApiModelProperty(value = "/**明细序号*/")
|
||||||
*/
|
private Integer seq_no;
|
||||||
@ApiModelProperty(value = "/**明细序号*/")
|
/**
|
||||||
private Integer seq_no;
|
* 销售单类型
|
||||||
/**
|
*/
|
||||||
* 销售单类型
|
@ApiModelProperty(value = "/**销售单类型*/")
|
||||||
*/
|
private String sale_type;
|
||||||
@ApiModelProperty(value = "/**销售单类型*/")
|
/**
|
||||||
private String sale_type;
|
* 物料标识
|
||||||
/**
|
*/
|
||||||
* 物料标识
|
@ApiModelProperty(value = "/**物料标识*/")
|
||||||
*/
|
private String material_id;
|
||||||
@ApiModelProperty(value = "/**物料标识*/")
|
/**
|
||||||
private String material_id;
|
* 状态
|
||||||
/**
|
*/
|
||||||
* 状态
|
@ApiModelProperty(value = "/**状态*/")
|
||||||
*/
|
private String status;
|
||||||
@ApiModelProperty(value = "/**状态*/")
|
/**
|
||||||
private String status;
|
* 销售数量
|
||||||
/**
|
*/
|
||||||
* 销售数量
|
@ApiModelProperty(value = "/**销售数量*/")
|
||||||
*/
|
private BigDecimal sale_qty;
|
||||||
@ApiModelProperty(value = "/**销售数量*/")
|
/**
|
||||||
private BigDecimal sale_qty;
|
* 生产顺序
|
||||||
/**
|
*/
|
||||||
* 生产顺序
|
@ApiModelProperty(value = "/**生产顺序*/")
|
||||||
*/
|
private Integer produce_seq;
|
||||||
@ApiModelProperty(value = "/**生产顺序*/")
|
/**
|
||||||
private Integer produce_seq;
|
* 客户标识
|
||||||
/**
|
*/
|
||||||
* 客户标识
|
@ApiModelProperty(value = "/**客户标识*/")
|
||||||
*/
|
private String cust_id;
|
||||||
@ApiModelProperty(value = "/**客户标识*/")
|
/**
|
||||||
private String cust_id;
|
* 客户编码
|
||||||
/**
|
*/
|
||||||
* 客户编码
|
@ApiModelProperty(value = "/**客户编码*/")
|
||||||
*/
|
private String cust_code;
|
||||||
@ApiModelProperty(value = "/**客户编码*/")
|
/**
|
||||||
private String cust_code;
|
* 客户名称
|
||||||
/**
|
*/
|
||||||
* 客户名称
|
@ApiModelProperty(value = "/**客户名称*/")
|
||||||
*/
|
private String cust_name;
|
||||||
@ApiModelProperty(value = "/**客户名称*/")
|
/**
|
||||||
private String cust_name;
|
* 计量单位标识
|
||||||
/**
|
*/
|
||||||
* 计量单位标识
|
@ApiModelProperty(value = "/**计量单位标识*/")
|
||||||
*/
|
private String qty_unit_id;
|
||||||
@ApiModelProperty(value = "/**计量单位标识*/")
|
/**
|
||||||
private String qty_unit_id;
|
* 数量计量单位名称
|
||||||
/**
|
*/
|
||||||
* 数量计量单位名称
|
@ApiModelProperty(value = "/**数量计量单位名称*/")
|
||||||
*/
|
private String qty_unit_name;
|
||||||
@ApiModelProperty(value = "/**数量计量单位名称*/")
|
/**
|
||||||
private String qty_unit_name;
|
* 计划交期
|
||||||
/**
|
*/
|
||||||
* 计划交期
|
@ApiModelProperty(value = "/**计划交期*/")
|
||||||
*/
|
private Date plandeliver_date;
|
||||||
@ApiModelProperty(value = "/**计划交期*/")
|
/**
|
||||||
private Date plandeliver_date;
|
* 创建人
|
||||||
/**
|
*/
|
||||||
* 创建人
|
@ApiModelProperty(value = "/**创建人*/")
|
||||||
*/
|
private String create_id;
|
||||||
@ApiModelProperty(value = "/**创建人*/")
|
/**
|
||||||
private String create_id;
|
* 创建人姓名
|
||||||
/**
|
*/
|
||||||
* 创建人姓名
|
@ApiModelProperty(value = "/**创建人姓名*/")
|
||||||
*/
|
private String create_name;
|
||||||
@ApiModelProperty(value = "/**创建人姓名*/")
|
/**
|
||||||
private String create_name;
|
* 创建时间
|
||||||
/**
|
*/
|
||||||
* 创建时间
|
@ApiModelProperty(value = "/**创建时间*/")
|
||||||
*/
|
@TableField(fill = FieldFill.INSERT)
|
||||||
@ApiModelProperty(value = "/**创建时间*/")
|
private Date create_time;
|
||||||
@TableField(fill = FieldFill.INSERT)
|
/**
|
||||||
private Date create_time;
|
* 提交人
|
||||||
/**
|
*/
|
||||||
* 提交人
|
@ApiModelProperty(value = "/**提交人*/")
|
||||||
*/
|
private String audit_id;
|
||||||
@ApiModelProperty(value = "/**提交人*/")
|
/**
|
||||||
private String audit_id;
|
* 提交时间
|
||||||
/**
|
*/
|
||||||
* 提交时间
|
@ApiModelProperty(value = "/**提交时间*/")
|
||||||
*/
|
private String audit_time;
|
||||||
@ApiModelProperty(value = "/**提交时间*/")
|
/**
|
||||||
private String audit_time;
|
* 提交人姓名
|
||||||
/**
|
*/
|
||||||
* 提交人姓名
|
@ApiModelProperty(value = "/**提交人姓名*/")
|
||||||
*/
|
private String audit_name;
|
||||||
@ApiModelProperty(value = "/**提交人姓名*/")
|
/**
|
||||||
private String audit_name;
|
* 确认人
|
||||||
/**
|
*/
|
||||||
* 确认人
|
@ApiModelProperty(value = "/**确认人*/")
|
||||||
*/
|
private String confirm_id;
|
||||||
@ApiModelProperty(value = "/**确认人*/")
|
/**
|
||||||
private String confirm_id;
|
* 确认人姓名
|
||||||
/**
|
*/
|
||||||
* 确认人姓名
|
@ApiModelProperty(value = "/**确认人姓名*/")
|
||||||
*/
|
private String confirm_name;
|
||||||
@ApiModelProperty(value = "/**确认人姓名*/")
|
/**
|
||||||
private String confirm_name;
|
* 确认时间
|
||||||
/**
|
*/
|
||||||
* 确认时间
|
@ApiModelProperty(value = "/**确认时间*/")
|
||||||
*/
|
private String confirm_time;
|
||||||
@ApiModelProperty(value = "/**确认时间*/")
|
/**
|
||||||
private String confirm_time;
|
* 生成方式
|
||||||
/**
|
*/
|
||||||
* 生成方式
|
@ApiModelProperty(value = "/**生成方式*/")
|
||||||
*/
|
private String create_mode;
|
||||||
@ApiModelProperty(value = "/**生成方式*/")
|
/**
|
||||||
private String create_mode;
|
* 是否删除
|
||||||
/**
|
*/
|
||||||
* 是否删除
|
@ApiModelProperty(value = "/**是否删除*/")
|
||||||
*/
|
@TableField(fill = FieldFill.INSERT)
|
||||||
@ApiModelProperty(value = "/**是否删除*/")
|
private Integer is_delete;
|
||||||
@TableField(fill = FieldFill.INSERT)
|
/**
|
||||||
private Integer is_delete;
|
* 备注
|
||||||
/**
|
*/
|
||||||
* 备注
|
@ApiModelProperty(value = "/**备注*/")
|
||||||
*/
|
private String remark;
|
||||||
@ApiModelProperty(value = "/**备注*/")
|
/**
|
||||||
private String remark;
|
* 车间标识
|
||||||
/**
|
*/
|
||||||
* 车间标识
|
@ApiModelProperty(value = "/**车间标识*/")
|
||||||
*/
|
private String product_area;
|
||||||
@ApiModelProperty(value = "/**车间标识*/")
|
/**
|
||||||
private String product_area;
|
* 生产数量
|
||||||
/**
|
*/
|
||||||
* 生产数量
|
@ApiModelProperty(value = "/**生产数量*/")
|
||||||
*/
|
private BigDecimal product_qty;
|
||||||
@ApiModelProperty(value = "/**生产数量*/")
|
/**
|
||||||
private BigDecimal product_qty;
|
* 预入库数量
|
||||||
/**
|
*/
|
||||||
* 预入库数量
|
@ApiModelProperty(value = "/**预入库数量*/")
|
||||||
*/
|
private BigDecimal instor_qty;
|
||||||
@ApiModelProperty(value = "/**预入库数量*/")
|
/**
|
||||||
private BigDecimal instor_qty;
|
* 发货数量
|
||||||
/**
|
*/
|
||||||
* 发货数量
|
@ApiModelProperty(value = "/**发货数量*/")
|
||||||
*/
|
private BigDecimal sendout_qty;
|
||||||
@ApiModelProperty(value = "/**发货数量*/")
|
/**
|
||||||
private BigDecimal sendout_qty;
|
* 物料编码
|
||||||
/**
|
*/
|
||||||
* 物料编码
|
@ApiModelProperty(value = "/**物料编码*/")
|
||||||
*/
|
private String material_code;
|
||||||
@ApiModelProperty(value = "/**物料编码*/")
|
/**
|
||||||
private String material_code;
|
* 物料规格
|
||||||
/**
|
*/
|
||||||
* 物料规格
|
@ApiModelProperty(value = "/**物料规格*/")
|
||||||
*/
|
private String material_spec;
|
||||||
@ApiModelProperty(value = "/**物料规格*/")
|
/**
|
||||||
private String material_spec;
|
* 订单合同号
|
||||||
/**
|
*/
|
||||||
* 订单合同号
|
@ApiModelProperty(value = "/**订单合同号*/")
|
||||||
*/
|
private String contract_code;
|
||||||
@ApiModelProperty(value = "/**订单合同号*/")
|
/**
|
||||||
private String contract_code;
|
* aps最早开始时间(下料时间)
|
||||||
/**
|
*/
|
||||||
* aps最早开始时间(下料时间)
|
@ApiModelProperty(value = "/**aps最早开始时间(下料时间)*/")
|
||||||
*/
|
private String early_start_time;
|
||||||
@ApiModelProperty(value = "/**aps最早开始时间(下料时间)*/")
|
/**
|
||||||
private String early_start_time;
|
* aps订单状态
|
||||||
/**
|
*/
|
||||||
* aps订单状态
|
@ApiModelProperty(value = "/**aps订单状态 */")
|
||||||
*/
|
private String aps_status;
|
||||||
@ApiModelProperty(value = "/**aps订单状态 */")
|
/**
|
||||||
private String aps_status;
|
* aps订单状态
|
||||||
/**
|
*/
|
||||||
* aps变更标识
|
@ApiModelProperty(value = "/**aps映射订单类型 */")
|
||||||
*/
|
private String aps_sale_type;
|
||||||
@ApiModelProperty(value = "/**aps变更标识*/")
|
/**
|
||||||
private String aps_update_flag;
|
* aps变更标识
|
||||||
/**
|
*/
|
||||||
* aps变更时间
|
@ApiModelProperty(value = "/**aps变更标识*/")
|
||||||
*/
|
private String aps_update_flag;
|
||||||
@ApiModelProperty(value = "/**aps变更时间*/")
|
/**
|
||||||
private Date aps_update_time;
|
* aps变更时间
|
||||||
|
*/
|
||||||
|
@ApiModelProperty(value = "/**aps变更时间*/")
|
||||||
|
private Date aps_update_time;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user