提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.api.mdk.dto; |
潘 |
2 |
|
|
3 |
import io.swagger.v3.oas.annotations.media.Schema; |
|
4 |
import lombok.Data; |
|
5 |
|
932343
|
6 |
import javax.validation.constraints.NotNull; |
7fd198
|
7 |
import java.util.Date; |
054fb9
|
8 |
import java.util.Map; |
7fd198
|
9 |
|
潘 |
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年08月26日 |
|
14 |
*/ |
|
15 |
@Schema(description = "RPC 模型 - 调度 DTO") |
|
16 |
@Data |
|
17 |
public class MdkScheduleReqDTO { |
|
18 |
|
932343
|
19 |
@Schema(description = "调度方案编号") |
潘 |
20 |
@NotNull(message="调度方案编号不能为空") |
054fb9
|
21 |
private String scheduleCode; |
潘 |
22 |
|
932343
|
23 |
@Schema(description = "调度方案时间") |
潘 |
24 |
@NotNull(message="调度方案时间不能为空") |
7fd198
|
25 |
private Date scheduleTime; |
潘 |
26 |
} |