baoshiwei
2025-03-12 3c2c87364b89de46d12e95abd5bdf8cbd2c6dbf6
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package cn.shlanbao.qms.domain.vo;
 
import cn.shlanbao.qms.domain.LbDevice;
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import org.dromara.common.excel.annotation.ExcelDictFormat;
import org.dromara.common.excel.convert.ExcelDictConvert;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
 
import java.io.Serial;
import java.io.Serializable;
import java.util.Date;
 
 
 
/**
 * 测试仪视图对象 lb_device
 *
 * @author bsw
 * @date 2024-12-12
 */
@Data
@ExcelIgnoreUnannotated
@AutoMapper(target = LbDevice.class)
public class LbDeviceVo implements Serializable {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    /**
     * 
     */
    @ExcelProperty(value = "")
    private Long id;
 
    /**
     * 设备类型
     */
    @ExcelProperty(value = "设备类型", converter = ExcelDictConvert.class)
    @ExcelDictFormat(dictType = "lb_device_type")
    private String deviceType;
 
    /**
     * 设备编号
     */
    @ExcelProperty(value = "设备编号")
    private String deviceCode;
 
    /**
     * 所在组
     */
    @ExcelProperty(value = "所在组")
    private String deviceGroup;
 
    /**
     * 所在部门
     */
    @ExcelProperty(value = "所在部门")
    private String deviceDept;
 
    /**
     * 所在工位
     */
    @ExcelProperty(value = "所在工位")
    private String deviceStation;
 
    /**
     * 备注
     */
    @ExcelProperty(value = "备注")
    private String remark;
 
 
}