廖井涛
2024-04-23 6268216d0a0cf656d8ee639691e759c7c35e9291
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
package com.example.erp.entity.sd;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
 
import java.sql.Date;
import java.time.LocalDate;
 
@Data
public class Delivery {
    @TableId(type = IdType.AUTO)
 
    private Long id;
    private Integer deliveryState;
    private Integer stockState;
    private String paymentTerms;
    private String deliveryId;
    private String orderId;
    private String project;
    private String customerId;
    private String customerName;
    private LocalDate deliveryDate;
    private String payMethod;
    private LocalDate payDate;
    private String salesmanId;
    private String salesman;
    private String creatorId;
    private String creator;
    private String contacts;
    private String contactNumber;
    private String deliveryAddress;
    private Double area;
    private Integer quantity;
    private Double money;
    private Double otherMoney;
    private String remarks;
    private LocalDate createTime;
    private LocalDate updateTime;
 
}