guoyuji
2024-05-23 ef5a518c3e2c1fe41aa60f56ca31ddafa0cb1561
north-glass-erp/src/main/java/com/example/erp/entity/sd/Delivery.java
New file
@@ -0,0 +1,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;
}