wu
2024-10-26 328f9b1f7a046378ef5d8f2b8337770fff372cc7
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
package com.example.springboot.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
import lombok.Data;
 
/**
 * 测量误差表
 */
@Data
@TableName("measuresetting")
public class MeasureSetting {
 
    /**
     * 主键,自动生成
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 宽误差
     */
    private Double errorWidth;
    /**
     * 高误差
     */
    private Double errorHeight;
    /**
     * 线路
     */
    private Integer line;
    private Integer thickness;
    private String films ;
 
    
    
 
}