廖井涛
2024-02-02 a9e251088bcb92a4ba5f49e9eaea502071a65458
部分差异上的文件
3个文件已修改
10 ■■■■■ 已修改文件
north-glass-erp/src/main/java/com/example/erp/entity/sd/Delivery.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/DeliveryDetail.java 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderDetail.java 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/Delivery.java
@@ -22,7 +22,7 @@
    private LocalDate payDate;
    private String salaManId;
    private String salaMan;
    private String createrId;
    private String creatorId;
    private String creator;
    private String contacts;
    private String contactNumber;
north-glass-erp/src/main/java/com/example/erp/entity/sd/DeliveryDetail.java
@@ -12,7 +12,9 @@
    @TableId(type = IdType.AUTO)
    private Long id;
    private String deliveryId;
    private Integer deliveryNumber;
    private String orderId;
    private Integer orderNumber;
    private Double area;
    private String quantity;
north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderDetail.java
@@ -2,6 +2,8 @@
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.example.erp.entity.mm.FinishedGoodsInventory;
import com.example.erp.entity.pp.FlowCard;
import lombok.Data;
import java.time.LocalDate;
@@ -12,6 +14,7 @@
    private Long id;
    private String orderId;
    private Integer orderNumber;
    private String buildingNumber;
    private Integer productId;
@@ -40,6 +43,9 @@
    private LocalDate updateTime;
    private Order order;
    private Delivery delivery;
    private DeliveryDetail deliveryDetail;
    private FinishedGoodsInventory finishedGoodsInventory;
    //private Product product;
}