value
2024-05-15 7e5e76a0b5e53612721822fa186f52b0188fa763
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;
 
}