package com.moral.api.entity; import lombok.Data; import lombok.EqualsAndHashCode; import java.util.Date; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.extension.activerecord.Model; @Data @EqualsAndHashCode(callSuper = false) public class ApproveTable extends Model { private static final long serialVersionUID = 1L; /** * 主键id */ @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 模块类型 */ private Integer approveModule; /** * 关联id */ private Integer relationId; /** * 状态 */ private Integer state; /** * 状态名称 */ private String stateName; /** * 是否删除 * */ private Integer isDel; private Integer createId; private String createName; private Date createTime; private Integer updateId; private String updateName; private Date updateTime; }