1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package org.jeecg.modules.mdc.subcontrol.vo;
|
| import lombok.Data;
|
| /**
| * @author clown
| * * @date 2022/7/19
| */
| @Data
| public class MdcEquipmentAndTypeVo {
| private String parentId; //列表ID
| private Integer mdcType; //默认1
| private Integer dayOrMonth; // 1 天 2 月
| }
|
|