zss
18 小时以前 171c413e6a3d1e4c24fae4fa54fcb7982a1a822d
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.basic.dto;
 
import com.ruoyi.basic.pojo.ProductModel;
import com.ruoyi.production.dto.ProductStructureDto;
import lombok.Data;
 
import java.util.List;
 
@Data
public class ProductModelDto extends ProductModel {
    private List<ProductStructureDto> productStructureList;
}