37 lines
861 B
Java
37 lines
861 B
Java
package com.peanut.modules.common.entity;
|
||
|
||
import com.baomidou.mybatisplus.annotation.TableField;
|
||
import com.baomidou.mybatisplus.annotation.TableId;
|
||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
||
import com.baomidou.mybatisplus.annotation.TableName;
|
||
import lombok.Data;
|
||
import java.io.Serializable;
|
||
|
||
@Data
|
||
@TableName("medicaldes_book")
|
||
public class MedicaldesBook implements Serializable {
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
|
||
|
||
@TableField(exist = false)
|
||
private BookEntity book;
|
||
@TableField(exist = false)
|
||
private com.peanut.modules.book.entity.SysDictDataEntity sysDictData;
|
||
|
||
@TableId
|
||
private Integer id;
|
||
|
||
private Integer bookId;
|
||
|
||
/**
|
||
* 书类型id,sys_dict_data-medicaldesBookType
|
||
*/
|
||
private Integer typeId;
|
||
|
||
private Integer sort;
|
||
|
||
@TableLogic
|
||
private Integer delFlag;
|
||
}
|