1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.mzl.flower.dto.response.configParam;
|
| import com.mzl.flower.base.AbstractTransDTO;
| import lombok.Data;
|
| @Data
| public class ConfigParamGroupVO extends AbstractTransDTO {
|
| private Long id;
|
| private String paramGroup;
|
| private String paramGroupName;
|
| private Integer paramOrder;
| }
|
|