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 ;
|
|
|
|
|
}
|