更正前端内容

This commit is contained in:
2026-01-07 20:15:33 +08:00
parent f32176a31d
commit a373fdb371
2 changed files with 130 additions and 159 deletions

View File

@@ -27,91 +27,73 @@ public class PdiSetups implements Serializable {
/** 钢卷号 */
@Excel(name = "钢卷号")
@TableField("coilid")
private String coilid;
/** 计划号 */
@Excel(name = "计划号")
@TableField("planid")
private String planid;
/** 钢种 */
@Excel(name = "钢种")
@TableField("steel_grade")
private String steelGrade;
/** 厚度 */
@Excel(name = "厚度")
@TableField("thick")
private BigDecimal thick;
/** 屈服强度 */
@Excel(name = "屈服强度")
@TableField("yield_stren")
private BigDecimal yieldStren;
/** 开卷机张力 */
@Excel(name = "开卷机张力")
@TableField("por_tension")
private BigDecimal porTension;
/** 入口活套张力 */
@Excel(name = "入口活套张力")
@TableField("cel_tension")
private BigDecimal celTension;
/** 清洗段张力 */
@Excel(name = "清洗段张力")
@TableField("clean_tension")
private BigDecimal cleanTension;
/** 钝化段张力 */
@Excel(name = "钝化段张力")
@TableField("passivation_tension")
private BigDecimal passivationTension;
/** 出口活套张力 */
@Excel(name = "出口活套张力")
@TableField("cxl_tension")
private BigDecimal cxlTension;
/** 卷取机张力 */
@Excel(name = "卷取机张力")
@TableField("tr_tension")
private BigDecimal trTension;
/** 平整机入口张力 */
@Excel(name = "平整机入口张力")
@TableField("leveler_entry_tension")
private BigDecimal levelerEntryTension;
/** 平整机出口张力 */
@Excel(name = "平整机出口张力")
@TableField("leveler_exit_tension")
private BigDecimal levelerExitTension;
/** 矫直机出口张力 */
@Excel(name = "矫直机出口张力")
@TableField("straightener_exit_tension")
private BigDecimal straightenerExitTension;
/** 炉区张力 */
@Excel(name = "炉区张力")
@TableField("fur_tension")
private BigDecimal furTension;
/** 冷却塔张力 */
@Excel(name = "冷却塔张力")
@TableField("tower_tension")
private BigDecimal towerTension;
/** 创建时间 */
@Excel(name = "创建时间")
@TableField("create_time")
private Date createTime;
/** 更新时间 */
@Excel(name = "更新时间")
@TableField("update_time")
private Date updateTime;
}