zss
22 小时以前 d8adaddf1886dfeb28599ef2e047da905883e42d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.productionPlan.dto;
 
import com.ruoyi.production.dto.ProductOrderDto;
import com.ruoyi.production.pojo.ProductionProductMain;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel("生产计划追踪进度的订单信息")
public class OrderDto {
 
    //生产订单信息
    private ProductOrderDto productOrderDto;
 
    //报工详情
    private List<ProductionProductMain> productionProductMains;
}