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; }