New file |
| | |
| | | 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 String remarks; |
| | | private LocalDate createTime; |
| | | private LocalDate updateTime; |
| | | |
| | | } |