廖井涛
2024-01-22 942da840dd923161bbda7a8c0302d0ceae51b533
实体类添加
1个文件已修改
12个文件已添加
380 ■■■■■ 已修改文件
north-glass-erp/src/main/java/com/example/erp/entity/sd/BasicData.java 18 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/Customer.java 18 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/Delivery.java 39 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/DeliveryDetail.java 28 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/GlassType.java 21 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/Order.java 56 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderDetail.java 44 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderGlassDetail.java 31 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderProcessDetail.java 19 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java 17 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/ProductDetail.java 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/Returns.java 38 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/ReturnsDetail.java 28 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
north-glass-erp/src/main/java/com/example/erp/entity/sd/BasicData.java
New file
@@ -0,0 +1,18 @@
package com.example.erp.entity.sd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import java.time.LocalDate;
@Data
public class BasicData {
    @TableId(type = IdType.AUTO)
    private Integer id;
    private String basicType;
    private String name;
    private String type;
    private LocalDate createTime;
    private LocalDate updateTime;
}
north-glass-erp/src/main/java/com/example/erp/entity/sd/Customer.java
New file
@@ -0,0 +1,18 @@
package com.example.erp.entity.sd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
@Data
public class Customer {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String customerName;
    private String grade;
    private Double moneyLimit;
    private String address;
    private String contact;
    private String phone;
}
north-glass-erp/src/main/java/com/example/erp/entity/sd/Delivery.java
New file
@@ -0,0 +1,39 @@
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;
}
north-glass-erp/src/main/java/com/example/erp/entity/sd/DeliveryDetail.java
New file
@@ -0,0 +1,28 @@
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 DeliveryDetail {
    @TableId(type = IdType.AUTO)
    private Long id;
    private Integer deliveryNumber;
    private Integer orderNumber;
    private Double area;
    private String quantity;
    private Double money;
    private String deliveryDetailRemakes;
    private Integer deliveryDetailState;
    private LocalDate createTime;
    private LocalDate updateTime;
    private  Delivery delivery;
    private  OrderDetail orderDetail;
}
north-glass-erp/src/main/java/com/example/erp/entity/sd/GlassType.java
New file
@@ -0,0 +1,21 @@
package com.example.erp.entity.sd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import java.time.LocalDate;
@Data
public class GlassType {
    @TableId(type = IdType.AUTO)
    private Long id;
    private Integer typeGrade;
    private String typeId;
    private String typeName;
    private String parentTypeId;
    private LocalDate createTime;
    private LocalDate updateTime;
}
north-glass-erp/src/main/java/com/example/erp/entity/sd/Order.java
New file
@@ -0,0 +1,56 @@
package com.example.erp.entity.sd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import java.time.LocalDate;
@Data
public class Order {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String orderId;
    private String project;
    private String customerName;
    private String orderType;
    private String orderClassify;
    private String icon;
    private String packType;
    private String deliveryDate;
    private String batch;
    private Integer calculateType;
    private String salesmanId;
    private String salesman;
    private String alType;
    private Double money;
    private String contractId;
    private String customerBatch;
    private String contacts;
    private String contactNumber;
    private String deliveryAddress;
    private Double otherMoney;
    private String otherMoneyRemarks;
    private String processingNote;
    private String otherRemaks;
    private Double area;
    private Long quantity;
    private String verifierId;
    private String verifier;
    private String createrId;
    private String creater;
    private Integer createOrder;
    private Integer processReview;
    private Integer orderReview;
    private Integer productionOrder;
    private Integer processingCard;
    private Integer warehousing;
    private Integer delivery;
    private LocalDate createTime;
    private LocalDate updateTime;
    private Customer  customer;
}
north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderDetail.java
New file
@@ -0,0 +1,44 @@
package com.example.erp.entity.sd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import java.time.LocalDate;
@Data
public class OrderDetail {
    @TableId(type = IdType.AUTO)
    private Long id;
    private Integer orderNumber;
    private String buildingNumber;
    private String productName;
    private Double price;
    private Long quantity;
    private Double grossAmount;
    private Double width;
    private Double height;
    private String shape;
    private Double area;
    private Double grossArea;
    private Double computeArea;
    private Double computeGrossArea;
    private String processingNote;
    private String remarks;
    private Integer bendRadius;
    private String edgingType;
    private Double weight;
    private Double perimeter;
    private Integer warehouseNum;
    private Integer deliveryNum;
    private Integer returnNum;
    private Integer state;
    private LocalDate createTime;
    private LocalDate updateTime;
    private Order order;
    private Product product;
}
north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderGlassDetail.java
New file
@@ -0,0 +1,31 @@
package com.example.erp.entity.sd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import java.time.LocalDate;
@Data
public class OrderGlassDetail {
    @TableId(type = IdType.AUTO)
    private Long id;
    private Integer technologyNumber;
    private String glassAddress;
    private String glassChild;
    private Double childWidth;
    private Double childHeight;
    private String process;
    private String productionId;
    private Integer splittingStatus;
    private String founder;
    private Integer group;
    private LocalDate produtionTime;
    private LocalDate createTime;
    private  Order order;
    private  OrderDetail orderDetail;
}
north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderProcessDetail.java
New file
@@ -0,0 +1,19 @@
package com.example.erp.entity.sd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
@Data
public class OrderProcessDetail {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String process;
    private Integer reportingworkNum;
    private Integer brokenNum;
    private Order order;
    private OrderDetail orderDetail;
    private Product product;
}
north-glass-erp/src/main/java/com/example/erp/entity/sd/Product.java
@@ -4,21 +4,24 @@
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import java.time.LocalDate;
@Data
public class Product {
    @TableId(type = IdType.AUTO)
    private Integer id;
    private String prodID;
    private String product;
    private String glassType;
    private Long id;
    private String productName;
    private String typeName;
    private Double totalThickness;
    private Double thickness;
    private String Query;
    private String query;
    private String remarks;
    private Integer state;
    private String creator;
    private String createTime;
    private String updateTime;
    private LocalDate createTime;
    private LocalDate updateTime;
    private BasicGlassType basicGlassType;
}
north-glass-erp/src/main/java/com/example/erp/entity/sd/ProductDetail.java
New file
@@ -0,0 +1,23 @@
package com.example.erp.entity.sd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import java.time.LocalDate;
@Data
public class ProductDetail    {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String productName;
    private String detailType;
    private String detail;
    private String process;
    private String separation;
    private LocalDate createTime;
    private Product product;
}
north-glass-erp/src/main/java/com/example/erp/entity/sd/Returns.java
New file
@@ -0,0 +1,38 @@
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 Returns {
    @TableId(type = IdType.AUTO)
    private Long id;
    private Integer returnsState;
    private Integer warehousingState;
    private String returnsId;
    private String deliveryId;
    private String project;
    private Long customerId;
    private String customerName;
    private LocalDate returnsDate;
    private String returnsMethod;
    private String salaManId;
    private String salaMan;
    private String createrId;
    private String creator;
    private Double area;
    private Integer quantity;
    private Double money;
    private String remarks;
    private LocalDate createTime;
    private LocalDate updateTime;
    private  Delivery delivery;
    private  Customer customer;
}
north-glass-erp/src/main/java/com/example/erp/entity/sd/ReturnsDetail.java
New file
@@ -0,0 +1,28 @@
package com.example.erp.entity.sd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import java.time.LocalDate;
@Data
public class ReturnsDetail {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String returnsId;
    private Integer returnsNumber;
    private Integer deliveryNumber;
    private Double area;
    private Long quantity;
    private Double money;
    private String returnsDetailRemakes;
    private Integer returnsDetailState;
    private LocalDate createTime;
    private LocalDate updateTime;
    private  Returns returns;
    private  DeliveryDetail deliveryDetail;
}