qushaowei
2025-05-29 ba9c6723249f0a843d35eb21b43a00be4b7de3ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.jeecg.modules.dnc.request;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
@Data
public class DeviceCharactersRequest {
 
    private String deviceNo;
 
    private String departId;
 
    private String controlSystem;
 
    private String characters;
 
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String startTime;
 
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private String endTime;
}