liyong
2026-04-30 c2ad2126d6f8423e0a5e6e20bbb91ef6bb1cffc0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.production.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.time.LocalDateTime;
 
@Data
@ApiModel("ProductionReportStateDto")
public class ProductionReportStateDto {
 
    @ApiModelProperty("状态: 1-开始报工 2-结束报工 3-报工完成")
    private Integer state;
 
    @ApiModelProperty("进行中的报工ID")
    private Long runningId;
 
    @ApiModelProperty("开始时间")
    private LocalDateTime startTime;
}