xiangpei
2024-06-04 81b6f1cc38a941b65f989ecdd40529f2648bdd8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.ycl.jxkg.domain.entity;
 
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ycl.jxkg.domain.base.AbsEntity;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
@TableName("t_task_exam_customer_answer")
public class TaskExamCustomerAnswer extends AbsEntity {
 
    /**
     * 任务Id
     */
    @TableField("task_exam_id")
    private Integer taskExamId;
 
    /**
     * 创建者
     */
    @TableField("create_user")
    private Integer createUser;
 
    /**
     * 创建时间
     */
    @TableField(value = "create_time", fill = FieldFill.INSERT)
    private Date createTime;
 
    /**
     * 任务完成情况(Json)
     */
    @TableField("text_content_id")
    private Integer textContentId;
 
}