XiaoRuby
2023-08-17 95bd45377f1e04b448d407e3af4ee2707b90a24b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.yuanchu.mom.pojo.dto;
 
import lombok.Data;
 
import java.util.List;
 
@Data
class SpecificationsDto {
    private Integer id;
 
    private String name;
 
    private String code = "[4]";
 
}