czt
昨天 9f6dacf7b39e5aeba37d8faf575c9e56d8cbe51a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.fzzy.otherview.whhpjl.dto;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 共享接口-省质检中心报告-小麦粉检验结果
 *
 * @author czt
 * @date 2023/12/11
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class ShareApi2013Syy implements Serializable {
 
 
    private String qlyOrgReportOilId;  //食用油质检结果ID
    private String qlyOrgReportId;  //质检报告管理id
    private String colorLustre;  //色泽
    private String transparency;  //透明度
    private String odorTaste;  //气味滋味
    private String waterVolatileContent;  //水分及挥发物含量
    private String insolubleContent;  //不溶性杂质含量
    private String acidValue;  //酸价
    private String peroxideValue;  //过氧化值
    private String heatingTest;  //加热试验
    private String aflatioxin;  //黄曲霉毒素
    private String benzoPyrene;  //苯并芘
    private String bha;  //BHA
    private String bht;  //BHT
    private String tbhq;  //TBHQ
    private String qualityResult;  //质量判定
    private String delectionPerson;  //检验人
    private String delectionStartTime;  //检测开始时间
    private String delectionEndTime;  //检测结束时间
    private String inspectionResult;  //检验结论
}