guoyuji
2024-01-30 2eed507a4dfffda298bcd3de479a66db5a69bbab
north-glass-erp/src/main/java/com/example/erp/entity/sd/Order.java
New file
@@ -0,0 +1,58 @@
package com.example.erp.entity.sd;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.time.LocalDate;
@Data
@TableName("`order`")
public class Order {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String orderId;
    private String project;
    private String customerId;
    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 otherRemarks;
    private Double area;
    private Long quantity;
    private String verifierId;
    private String verifier;
    private String creatorId;
    private String creator;
    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;
}