liding
2025-04-08 54f3f9d6c99f6890c39ff05b1e251a555709341a
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ruoyi.basic.dto;
 
import lombok.Data;
 
@Data
public class ProductPartDto {
 
    private Integer id;
    private Integer productId;
 
    private String type;
 
}