yangys
2025-08-02 de19116f884445318620e8436c5b1fbf829c00b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
 
/**
 * 分页拆线呢
 */
 
@Schema(description = "机床回传文件处理查询对象")
@Setter
@Getter
public class MachineBackFileHandleQueryVO extends Query {
    @Schema(description = "确认时间-开始")
    private LocalDateTime confirmTimeBegin;
    @Schema(description = "确认时间-截止")
    private LocalDateTime confirmTimeEnd;
 
}