1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package org.dromara.qa.md.domain.bo;
|
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * 批量配置DTO
| *
| * @author ruoyi
| * @date 2026-04-09
| */
| @Data
| public class BatchConfigBo
| {
| private Integer calibCycleDays;
| private Integer remindDays;
| private String applyScope;
| private List<Long> boxIds;
| }
|
|