guoyujie
2 天以前 c4b9a339caff12e95f61c3d5dc950aafcc8c566c
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
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 Returns {
    @TableId(type = IdType.AUTO)
 
    private Long id;
    private Integer returnsState;
    private Integer warehousingState;
    private String returnsId;
    private String deliveryId;
    private String project;
    private Long customerId;
    private String customerName;
    private LocalDate returnsDate;
    private String returnsMethod;
    private String salaManId;
    private String salaMan;
    private String createrId;
    private String creator;
    private Double area;
    private Integer quantity;
    private Double money;
    private String remarks;
    private LocalDate createTime;
    private LocalDate updateTime;
 
    private  Delivery delivery;
    private  Customer customer;
 
}