chenrui
2025-03-21 82a57fc77fc3f170c436f205761113c1178d7a7f
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;
 
}