chenlu
2024-07-17 7d1dcd74604d8a1b4369cf2f966cc6b628893fc7
north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderProcessDetail.java
New file
@@ -0,0 +1,26 @@
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;
@Data
@TableName("sd.order_process_detail")
public class OrderProcessDetail {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String orderId;
    private String processId;
    private String orderNumber;
    private Integer technologyNumber;
    private String process;
    private int reportingWorkNumCount;
    private int reportingWorkNum;
    private int brokenNum;
//    private Order order;
//    private OrderDetail orderDetail;
//    private Product product;
}