package com.ruoyi.system.model; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.ruoyi.common.core.domain.BaseModel; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; @Data @EqualsAndHashCode(callSuper = false) @ApiModel(value = "任务") @TableName(value = "state_task_center" ) public class StateTaskCenter extends BaseModel { @TableId(value = "id", type = IdType.ASSIGN_ID) private String id; @ApiModelProperty(value = "任务名称") @TableField("name") private String name; @ApiModelProperty(value = "模块名称") @TableField("module_name") private String moduleName; @ApiModelProperty(value = "系统摘要") @TableField("remark") private String remark; @ApiModelProperty(value = "类型") @TableField("category") private String category; @ApiModelProperty(value = "流程id") @TableField("flow_id") private String flowId; @TableField("variable") private String variable; @ApiModelProperty(value = "合同项目id") @TableField("project_id") private String projectId; }