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 deliveryId;
|
private String project;
|
private String customerName;
|
private LocalDate deliveryDate;
|
private String payMethod;
|
private LocalDate payDate;
|
private String salaManId;
|
private String salaMan;
|
private String createrId;
|
private String creator;
|
private String contacts;
|
private String contactNumber;
|
private String deliveryAddress;
|
private Double area;
|
private Integer quantity;
|
private Double money;
|
private String remarks;
|
private LocalDate createTime;
|
private LocalDate updateTime;
|
private Order order;
|
private Customer customer;
|
|
}
|