cuilei
2025-06-16 73be743ff89b54fa14fb07afa72e6d833406a381
lxzn-module-tms/src/main/java/org/jeecg/modules/tms/entity/ParaHoleTools.java
@@ -200,6 +200,22 @@
   @Excel(name = "刀头数", width = 15)
    @ApiModelProperty(value = "刀头数")
    private String headsNumber;
    /**适配刀座*/
    @Excel(name = "适配刀座", width = 15)
    @ApiModelProperty(value = "适配刀座")
    private String adaptHolder;
    /**集团公司编码*/
    @Excel(name = "集团公司编码", width = 15)
    @ApiModelProperty(value = "集团公司编码")
    private String groupCompanyCode;
    /**集团公司标记*/
    @Excel(name = "集团公司标记", width = 15)
    @ApiModelProperty(value = "集团公司标记")
    private String groupCompanySign;
    /**工具简称*/
    @Excel(name = "工具简称", width = 15)
    @ApiModelProperty(value = "工具简称")
    private String shortCalled;
   /**备注*/
   @Excel(name = "备注", width = 15)
    @ApiModelProperty(value = "备注")
@@ -211,21 +227,21 @@
   /**创建人*/
   @Excel(name = "创建人", width = 15)
    @ApiModelProperty(value = "创建人")
    private String createdBy;
    private String createBy;
   /**创建时间*/
   @Excel(name = "创建时间", width = 15, format = "yyyy-MM-dd")
   @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern="yyyy-MM-dd")
   @Excel(name = "创建时间", width = 15, format = "yyyy-MM-dd HH:mm")
   @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
    @ApiModelProperty(value = "创建时间")
    private Date createdTime;
    private Date createTime;
   /**更新人*/
   @Excel(name = "更新人", width = 15)
    @ApiModelProperty(value = "更新人")
    private String updatedBy;
    private String updateBy;
   /**更新时间*/
   @Excel(name = "更新时间", width = 15, format = "yyyy-MM-dd")
   @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd")
    @DateTimeFormat(pattern="yyyy-MM-dd")
   @Excel(name = "更新时间", width = 15, format = "yyyy-MM-dd HH:mm")
   @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm")
    @ApiModelProperty(value = "更新时间")
    private Date updatedTime;
    private Date updateTime;
}