yangys
2025-08-17 0ef4cc755bddd87799b8bfdd65c8123df6e149d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package org.springblade.mdm.machineback.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import org.springblade.core.mp.support.Query;
 
import java.time.LocalDateTime;
import org.springframework.format.annotation.DateTimeFormat;
/**
 * 分页拆线呢
 */
 
@Schema(description = "机床回传文件处理查询对象")
@Setter
@Getter
public class MachineBackFileHandleQueryVO extends Query {
    @Schema(description = "确认时间-开始")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime confirmTimeBegin;
    @Schema(description = "确认时间-截止")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private LocalDateTime confirmTimeEnd;
 
}