35 lines
730 B
Java
35 lines
730 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;
|
||
|
||
import java.io.Serializable;
|
||
|
||
@Data
|
||
@TableName("medicaldes_inherit_relation")
|
||
public class MedicaldesInheritRelation implements Serializable {
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
@TableId
|
||
private Integer id;
|
||
/**
|
||
* 传承人id
|
||
*/
|
||
private Integer inheritId;
|
||
|
||
/**
|
||
* 传承人类型id,sys_dict_data表inheritType
|
||
*/
|
||
private Integer typeId;
|
||
|
||
/**
|
||
* 排序
|
||
*/
|
||
private Integer sort;
|
||
|
||
@TableLogic
|
||
private Integer delFlag;
|
||
}
|