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;
| }
|
|