zhangherong
3 天以前 0b8e5e2ee3c47e385816165826754d5cbb86faad
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
package com.lxzn.modules.assembly2.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.Date;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Getter;
import lombok.Setter;
import org.springframework.format.annotation.DateTimeFormat;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author baomidou
 * @since 2025-09-02
 */
@Getter
@Setter
@TableName("T020_BoltCheck")
public class T020Boltcheck implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "RecordID", type = IdType.AUTO)
    private Integer recordID;
 
    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss.SSS")
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss.SSS")
    @TableField(value = "RecordTime")
    private Date recordTime;
    @TableField(value = "ModelID")
    private Integer modelID;
    @TableField(value = "Length")
    private Double length;
    @TableField(value = "LengthUL")
    private Double lengthUL;
    @TableField(value = "LengthLL")
    private Double lengthLL;
    @TableField(value = "PitchMAX")
    private Double pitchMAX;
    @TableField(value = "PitchMIN")
    private Double pitchMIN;
    @TableField(value = "PitchUL")
    private Double pitchUL;
    @TableField(value = "PitchLL")
    private Double pitchLL;
    @TableField(value = "Result")
    private String result;
}