22 lines
432 B
Java
22 lines
432 B
Java
package com.peanut.modules.common.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@TableName("class_course")
|
|
public class ClassCourse {
|
|
|
|
@TableId
|
|
private Integer id;
|
|
|
|
private Integer modelId;
|
|
|
|
private Integer courseId;
|
|
|
|
@TableLogic
|
|
private Integer delFlag;
|
|
}
|