2025-07-18 09:39:09 +08:00
|
|
|
|
package com.klp.domain;
|
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.*;
|
|
|
|
|
|
import com.klp.common.core.domain.BaseEntity;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
|
2025-08-12 16:15:24 +08:00
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
|
2025-07-18 09:39:09 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 订单主对象 wms_order
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author Joshi
|
|
|
|
|
|
* @date 2025-07-18
|
|
|
|
|
|
*/
|
|
|
|
|
|
@Data
|
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
|
@TableName("wms_order")
|
|
|
|
|
|
public class WmsOrder extends BaseEntity {
|
|
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID=1L;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 订单ID
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableId(value = "order_id")
|
|
|
|
|
|
private Long orderId;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 订单编号
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String orderCode;
|
2025-08-12 15:19:34 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 客户ID
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Long customerId;
|
2025-07-18 09:39:09 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 客户名称
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String customerName;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 销售经理
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String salesManager;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 订单状态(0=新建,1=生产中,2=已完成,3=已取消)
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer orderStatus;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 备注
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String remark;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 删除标志(0=正常,1=已删除)
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableLogic
|
|
|
|
|
|
private Integer delFlag;
|
|
|
|
|
|
|
2025-08-12 16:15:24 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 含税金额
|
|
|
|
|
|
*/
|
|
|
|
|
|
private BigDecimal taxAmount;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 无税金额
|
|
|
|
|
|
*/
|
|
|
|
|
|
private BigDecimal noTaxAmount;
|
|
|
|
|
|
|
2025-07-18 09:39:09 +08:00
|
|
|
|
}
|