liding
2025-04-10 3637c851cf6a63fc9cf2d8eab6a3fb139937aa71
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;
 
}