2026-06-30 24681c81c09022f584a57006f2534b5f74723414
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package cn.iocoder.yudao.module.mes.controller.admin.md.workstation.vo.workshop;
 
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
import cn.idev.excel.annotation.ExcelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - MES 车间 Response VO")
@Data
@ExcelIgnoreUnannotated
public class MesMdWorkshopRespVO {
 
    @Schema(description = "车间编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    @ExcelProperty("车间编号")
    private Long id;
 
    @Schema(description = "车间编码", requiredMode = Schema.RequiredMode.REQUIRED, example = "WS001")
    @ExcelProperty("车间编码")
    private String code;
 
    @Schema(description = "车间名称", requiredMode = Schema.RequiredMode.REQUIRED, example = "一号车间")
    @ExcelProperty("车间名称")
    private String name;
 
    @Schema(description = "面积", example = "1000.00")
    @ExcelProperty("面积")
    private BigDecimal area;
 
    @Schema(description = "负责人用户编号", example = "1")
    private Long chargeUserId;
 
    @Schema(description = "负责人名称", example = "张三")
    @ExcelProperty("负责人")
    private String chargeUserName;
 
    @Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "0")
    @ExcelProperty("状态")
    private Integer status;
 
    @Schema(description = "备注", example = "备注")
    @ExcelProperty("备注")
    private String remark;
 
    @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
    @ExcelProperty("创建时间")
    private LocalDateTime createTime;
 
}