9 天以前 2e84a447af471fe5ada907c28849838a6bc3a340
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
package cn.iocoder.yudao.module.mes.dal.dataobject.wm.salesnotice;
 
import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
import cn.iocoder.yudao.module.mes.dal.dataobject.md.client.MesMdClientDO;
import com.baomidou.mybatisplus.annotation.KeySequence;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
 
import java.time.LocalDateTime;
import cn.iocoder.yudao.module.mes.enums.DictTypeConstants;
 
/**
 * MES 发货通知单 DO
 */
@TableName("mes_wm_sales_notice")
@KeySequence("mes_wm_sales_notice_seq")
@Data
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class MesWmSalesNoticeDO extends BaseDO {
 
    /**
     * 编号
     */
    @TableId
    private Long id;
    /**
     * 通知单编码
     */
    private String code;
    /**
     * 通知单名称
     */
    private String name;
    /**
     * 客户编号
     *
     * 关联 CRM 客户 {@link cn.iocoder.yudao.module.crm.api.customer.dto.CrmCustomerRespDTO#getId()}
     */
    private Long clientId;
    /**
     * 销售订单ID
     */
    private Long saleOrderId;
    /**
     * 销售订单号
     */
    private String saleOrderCode;
    /**
     * 发货日期
     */
    private LocalDateTime salesDate;
    /**
     * 收货人
     */
    private String recipientName;
    /**
     * 联系方式
     */
    private String recipientTelephone;
    /**
     * 收货地址
     */
    private String recipientAddress;
    /**
     * 状态
     *
     * 字典 {@link DictTypeConstants#MES_WM_SALES_NOTICE_STATUS}
     * 枚举 {@link cn.iocoder.yudao.module.mes.enums.wm.MesWmSalesNoticeStatusEnum}
     */
    private Integer status;
    /**
     * 出库状态
     *
     * 字典 {@link DictTypeConstants#MES_WM_OUT_STATUS}
     * 枚举 {@link cn.iocoder.yudao.module.mes.enums.wm.MesWmOutStatusEnum}
     */
    private Integer outStatus;
    /**
     * 备注
     */
    private String remark;
 
}