package org.jeecg.modules.eam.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.jeecg.common.constant.CommonConstant; import org.jeecg.common.system.base.entity.JeecgEntity; 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: mom_eam_repair_standard * @Author: jeecg-boot * @Date: 2024-07-08 * @Version: V1.0 */ @Data @TableName("mom_eam_repair_standard") @Accessors(chain = true) @EqualsAndHashCode(callSuper = false) @ApiModel(value="mom_eam_repair_standard对象", description="mom_eam_repair_standard") public class RepairStandard extends JeecgEntity implements Serializable { private static final long serialVersionUID = 1L; /**num*/ @Excel(name = "num", width = 15) @ApiModelProperty(value = "num") private java.lang.String num; /**name*/ @Excel(name = "name", width = 15) @ApiModelProperty(value = "name") private java.lang.String name; /**delFlag*/ @Excel(name = "delFlag", width = 15) @ApiModelProperty(value = "delFlag") @TableLogic private java.lang.Integer delFlag = CommonConstant.DEL_FLAG_0; /**remark*/ @Excel(name = "remark", width = 15) @ApiModelProperty(value = "remark") private java.lang.String remark; /**repairStandardCategoryId*/ @Excel(name = "repairStandardCategoryId", width = 15) @ApiModelProperty(value = "repairStandardCategoryId") private java.lang.String repairStandardCategoryId; @ApiModelProperty(value = "维修标准分类编码/名称") @TableField(exist = false) private String repairStandardCategoryNumName; }