修改TaskInfo实体类

master
Cui YongXing 2024-08-23 18:44:47 +08:00
parent cadee0563d
commit 8d558af36d
5 changed files with 13 additions and 7 deletions

View File

@ -1,14 +1,16 @@
package com.muyu.common.domian;
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.muyu.common.core.web.domain.BaseEntity;
import com.muyu.common.domian.req.TaskInfoAddReq;
import com.muyu.common.domian.req.TaskInfoUpdReq;
import com.muyu.common.domian.resp.TaskInfoResp;
import lombok.*;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;
import java.util.Date;
@ -35,7 +37,7 @@ public class TaskInfo extends BaseEntity {
/**
*
*/
private Integer weight;
private String weight;
/**
*
*/

View File

@ -24,7 +24,7 @@ public class TaskInfoAddReq {
*
*/
@Schema(name = "weight",description = "任务权重级别")
private Integer weight;
private String weight;
/**
*
*/

View File

@ -25,7 +25,7 @@ public class TaskInfoListReq {
*
*/
@Schema(name = "weight",description = "任务权重级别")
private Integer weight;
private String weight;
/**
*
*/

View File

@ -24,7 +24,7 @@ public class TaskInfoUpdReq {
*
*/
@Schema(name = "weight",description = "任务权重级别")
private Integer weight;
private String weight;
/**
*
*/

View File

@ -28,7 +28,7 @@ public class TaskInfoResp {
/**
*
*/
private Integer weight;
private String weight;
/**
*
*/
@ -37,5 +37,9 @@ public class TaskInfoResp {
*
*/
private String status;
/**
*
*/
private String remark;
}