hdy
2025-02-27 bf5dcc46de28c2ca664be4c6c3566e0a82c1ecd6
提交 | 用户 | 时间
20c287 1 package com.billion.main.da.domain;
A 2
3 import java.util.Date;
b15739 4
A 5 import com.baomidou.mybatisplus.annotation.TableField;
20c287 6 import com.fasterxml.jackson.annotation.JsonFormat;
A 7 import lombok.Data;
8 import org.apache.commons.lang3.builder.ToStringBuilder;
9 import org.apache.commons.lang3.builder.ToStringStyle;
10 import com.billion.common.annotation.Excel;
11 import com.billion.main.common.BaseEntity;
12
13 /**
14  * 拧紧采集对象 da_tighten_collection
15  * 
16  * @author Billion-Yi
17  * @date 2024-11-22
18  */
19 @Data
20 public class DaTightenCollection extends BaseEntity
21 {
22     private static final long serialVersionUID = 1L;
23
24     /** 主键id */
25     private Long id;
26
27     /** 总成序列号 */
28     @Excel(name = "总成序列号")
29     private String sfcCode;
30
31     /** 工位编码 */
32     @Excel(name = "工位编码")
33     private String locationCode;
34
35     /** 参数集编码 */
36     @Excel(name = "参数集编码")
37     private String paramSetCode;
38
39     /** 参数集名称 */
40     @Excel(name = "参数集名称")
41     private String paramSetName;
42
43     /** 扭矩值 */
44     @Excel(name = "扭矩值")
45     private String torque;
46
47     /** 扭矩状态 */
48     @Excel(name = "扭矩状态")
49     private String torqueStatus;
50
51     /** 角度值 */
52     @Excel(name = "角度值")
53     private String angle;
54
55     /** 角度状态 */
56     @Excel(name = "角度状态")
57     private String angleStatus;
58
59     /** 采集时间 */
60     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
61     @Excel(name = "采集时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
62     private Date collectTime;
63
b15739 64     @TableField(exist = false)
A 65     private String[] timeQuery;
66
67     @TableField(exist = false)
68     private String startTime;
69
70     @TableField(exist = false)
71     private String stopTime;
20c287 72
A 73 }