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.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.baomidou.mybatisplus.annotation.TableLogic; 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_category * @Author: jeecg-boot * @Date: 2024-07-08 * @Version: V1.0 */ @Data @TableName("mom_eam_repair_standard_category") @Accessors(chain = true) @EqualsAndHashCode(callSuper = false) @ApiModel(value="mom_eam_repair_standard_category对象", description="mom_eam_repair_standard_category") public class RepairStandardCategory extends JeecgEntity implements Serializable { private static final long serialVersionUID = 1L; /**分类编码*/ @Excel(name = "分类编码", width = 15) @ApiModelProperty(value = "分类编码") private java.lang.String num; /**分类名称*/ @Excel(name = "分类名称", width = 15) @ApiModelProperty(value = "分类名称") 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; /**parentId*/ @Excel(name = "parentId", width = 15) @ApiModelProperty(value = "parentId") private java.lang.String parentId; }