“djh”
2025-07-30 55b8adf7b267993ed964e394ace3b57f45faed83
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.gkhy.testFourierSpecialGasMonitor.entity.req;
 
import lombok.Data;
 
@Data
public class GasCategoryConfigurationReqDTO {
    private Integer id;
 
    private Integer gasCategoryId;
 
    private Integer orientation;
 
    private Double concentration;
 
    private Integer multiplication;
}