数据库字段更改
This commit is contained in:
@@ -4,9 +4,6 @@ import cn.afterturn.easypoi.excel.annotation.Excel;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 量具表
|
||||
@@ -17,7 +14,7 @@ import java.util.Date;
|
||||
@Data
|
||||
public class MeasureToolExcel {
|
||||
@Excel(name = "ID")
|
||||
private BigDecimal id;
|
||||
private Long id;
|
||||
@Excel(name = "量具 名")
|
||||
private String name;
|
||||
@Excel(name = "量具 编码")
|
||||
@@ -25,24 +22,24 @@ public class MeasureToolExcel {
|
||||
@Excel(name = "量具类型;计量型=1 计数型=2")
|
||||
private String type;
|
||||
@Excel(name = "1 可用,0 不可用")
|
||||
private BigDecimal status;
|
||||
private Integer status;
|
||||
@Excel(name = "备注")
|
||||
private String remark;
|
||||
@Excel(name = "删除标志,是否有效:1 可用 0不可用")
|
||||
private BigDecimal valid;
|
||||
private Integer valid;
|
||||
@Excel(name = "创建人")
|
||||
private BigDecimal creatorId;
|
||||
private Long creatorId;
|
||||
@Excel(name = "创建人姓名")
|
||||
private String creatorName;
|
||||
@Excel(name = "创建时间")
|
||||
private LocalDateTime createTime;
|
||||
@Excel(name = "更新人")
|
||||
private BigDecimal updaterId;
|
||||
private Long updaterId;
|
||||
@Excel(name = "更新人姓名")
|
||||
private String updaterName;
|
||||
@Excel(name = "更新时间")
|
||||
private LocalDateTime updateTime;
|
||||
@Excel(name = "版本号")
|
||||
private BigDecimal version;
|
||||
private Integer version;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user