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.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: 操作计分规则 * @Author: jeecg-boot * @Date: 2023-10-17 * @Version: V1.0 */ @Data @TableName("mom_eam_base_deduction_item") @Accessors(chain = true) @EqualsAndHashCode(callSuper = false) @ApiModel(value="mom_eam_base_deduction_item对象", description="操作计分规则") public class DeductionItem extends JeecgEntity implements Serializable { private static final long serialVersionUID = 1L; /**编号*/ @Excel(name = "编号", width = 15) @ApiModelProperty(value = "编号") private String num; /**内容*/ @Excel(name = "内容", width = 15) @ApiModelProperty(value = "内容") private String content; /**分数*/ @Excel(name = "分数", width = 15) @ApiModelProperty(value = "分数") private Integer deductionScore; /**创建人*/ /**所属部门*/ @ApiModelProperty(value = "所属部门") private String sysOrgCode; }