This commit is contained in:
wangjinlei
2024-03-15 10:19:03 +08:00
parent 0c740d33a0
commit 3cef570c97
388 changed files with 657 additions and 783 deletions

View File

@@ -0,0 +1,34 @@
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;
/**
* 传承人类型idsys_dict_data表inheritType
*/
private Integer typeId;
/**
* 排序
*/
private Integer sort;
@TableLogic
private Integer delFlag;
}