Crunchy
2024-07-03 fcfbaa84f1fef87a958452ef83d82e140d8ddb59
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;
 
}