Crunchy
2024-05-22 31cf479562e2a03b8318540075f611339ca3690a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yuanchu.mom.dto;
 
import lombok.Data;
 
@Data
public class productResultDto {
 
    private Integer id;
 
    private String insValue;
 
    private Integer insResult;
 
    private String remark;
 
}