From 23855599412c4d61b38d78f0f3abd3430a48b5b1 Mon Sep 17 00:00:00 2001 From: zhangherong <571457620@qq.com> Date: 星期三, 25 六月 2025 11:51:38 +0800 Subject: [PATCH] Merge branch 'mdc_hyjs_master' --- lxzn-module-tms/src/main/java/org/jeecg/modules/tms/entity/ToolLedgerDetail.java | 112 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 112 insertions(+), 0 deletions(-) diff --git a/lxzn-module-tms/src/main/java/org/jeecg/modules/tms/entity/ToolLedgerDetail.java b/lxzn-module-tms/src/main/java/org/jeecg/modules/tms/entity/ToolLedgerDetail.java new file mode 100644 index 0000000..d00d0e8 --- /dev/null +++ b/lxzn-module-tms/src/main/java/org/jeecg/modules/tms/entity/ToolLedgerDetail.java @@ -0,0 +1,112 @@ +package org.jeecg.modules.tms.entity; + +import java.io.Serializable; +import java.io.UnsupportedEncodingException; +import java.util.Date; +import java.math.BigDecimal; + +import com.baomidou.mybatisplus.annotation.*; +import lombok.Data; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.springframework.format.annotation.DateTimeFormat; +import org.jeecgframework.poi.excel.annotation.Excel; +import org.jeecg.common.aspect.annotation.Dict; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; + +/** + * @Description: tms_tool_ledger_detail + * @Author: jeecg-boot + * @Date: 2025-05-16 + * @Version: V1.0 + */ +@Data +@TableName("tms_tool_ledger_detail") +@Accessors(chain = true) +@EqualsAndHashCode(callSuper = false) +@ApiModel(value="tms_tool_ledger_detail瀵硅薄", description="tms_tool_ledger_detail") +public class ToolLedgerDetail implements Serializable { + private static final long serialVersionUID = 1L; + + /**涓婚敭id*/ + @TableId(type = IdType.ASSIGN_ID) + @ApiModelProperty(value = "涓婚敭id") + private String id; + /**宸ュ叿缂栫爜(鍏宠仈瀛楁)*/ + @Excel(name = "宸ュ叿缂栫爜", width = 15) + @ApiModelProperty(value = "宸ュ叿缂栫爜(鍏宠仈瀛楁,瀛榯ms_base_tools琛ㄤ富閿甶d)") + private String toolCode; + /**宸ュ叿缂栫爜*/ + @ApiModelProperty(value = "宸ュ叿缂栫爜(tms_base_tools琛╰ool_code瀛楁)") + @TableField(exist = false) + private String toolNum; + /**宸ュ叿缂栧彿*/ + @Excel(name = "宸ュ叿缂栧彿", width = 15) + @ApiModelProperty(value = "宸ュ叿缂栧彿") + private String toolId; + /**宸ュ叿涓枃鍚嶇О*/ + @TableField(exist = false) + @ApiModelProperty(value = "宸ュ叿涓枃鍚嶇О") + private String toolName; + /**鏁伴噺*/ + @Excel(name = "鏁伴噺", width = 15) + @ApiModelProperty(value = "鏁伴噺") + private BigDecimal quantity; + /**鐘舵��*/ + @Excel(name = "鐘舵��", width = 15) + @ApiModelProperty(value = "鐘舵��") + private String status; + /**搴撳尯/搴撳彿*/ + @Excel(name = "搴撳尯/搴撳彿", width = 15) + @ApiModelProperty(value = "搴撳尯/搴撳彿") + private String warehouseId; + /**浠撳簱鍚嶇О*/ + @TableField(exist = false) + @ApiModelProperty(value = "浠撳簱鍚嶇О") + private String warehouseName; + /**搴撲綅鍙�*/ + @Excel(name = "搴撲綅鍙�", width = 15) + @ApiModelProperty(value = "搴撲綅鍙�") + private String positionCode; + /**绉熸埛鍙�*/ + @Excel(name = "绉熸埛鍙�", width = 15) + @ApiModelProperty(value = "绉熸埛鍙�") + private String tenantId; + /**鍒涘缓浜�*/ + @ApiModelProperty(value = "鍒涘缓浜�") + private String createBy; + /**鍒涘缓鏃堕棿*/ + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") + @DateTimeFormat(pattern="yyyy-MM-dd") + @ApiModelProperty(value = "鍒涘缓鏃堕棿") + private Date createTime; + /**鏇存柊浜�*/ + @ApiModelProperty(value = "鏇存柊浜�") + private String updateBy; + /**鏇存柊鏃堕棿*/ + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") + @DateTimeFormat(pattern="yyyy-MM-dd") + @ApiModelProperty(value = "鏇存柊鏃堕棿") + private Date updateTime; + + @TableField(exist = false) + @ApiModelProperty(value = "鍨嬪彿/鍥惧彿") + private String toolModel; + + /**棰濆畾瀵垮懡*/ + @Excel(name = "棰濆畾瀵垮懡", width = 15) + @ApiModelProperty(value = "棰濆畾瀵垮懡") + private BigDecimal ratedLife; + + /**浣跨敤瀵垮懡*/ + @Excel(name = "浣跨敤瀵垮懡", width = 15) + @ApiModelProperty(value = "浣跨敤瀵垮懡") + private BigDecimal useLife; + + /**鍓╀綑瀵垮懡*/ + @Excel(name = "鍓╀綑瀵垮懡", width = 15) + @ApiModelProperty(value = "鍓╀綑瀵垮懡") + private BigDecimal remainingPercentage; +} -- Gitblit v1.9.3