| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.example.erp.entity.sd.Customer; |
| | | import com.example.erp.entity.sd.Order; |
| | | import com.example.erp.entity.sd.*; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDate; |
| | |
| | | @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 String orderId; |
| | | private Integer orderNumber; |
| | | private Integer inventory; |
| | | private Double actualSignalArea; |
| | | private Double area; |
| | | private Integer quantity; |
| | | private Double money; |
| | | private String remarks; |
| | | private LocalDate createTime; |
| | | private Integer quantityAvailable; |
| | | private String warehouseNumber; |
| | | private String storageRegion; |
| | | private Integer status; |
| | | private LocalDate enterStorageTime; |
| | | private String remark; |
| | | private LocalDate updateTime; |
| | | private LocalDate endTime; |
| | | private String processId; |
| | | |
| | | private Order order; |
| | | private Customer customer; |
| | | private OrderDetail orderDetail; |
| | | |
| | | } |