修改自测表
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package com.peanut.modules.common.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("self_evaluation_form")
|
||||
public class SelfEvaluationForm implements Serializable {
|
||||
private static final long serialVersionUID = 1L; @TableId
|
||||
|
||||
private Integer id;
|
||||
private String type;
|
||||
private String country;
|
||||
private String city;
|
||||
private String status;
|
||||
private Integer userId;
|
||||
private Date createTime;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user