42 lines
757 B
Java
42 lines
757 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_light")
|
|
public class MedicaldesLight implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableId
|
|
private Integer id;
|
|
|
|
/**
|
|
* 名称
|
|
*/
|
|
private String name;
|
|
|
|
/**
|
|
* 文件地址
|
|
*/
|
|
private String url;
|
|
|
|
/**
|
|
* 类型1吴门之歌2巴山夜雨3吴门之徽
|
|
*/
|
|
private Integer type;
|
|
|
|
/**
|
|
* 排序
|
|
*/
|
|
private Integer sort;
|
|
|
|
@TableLogic
|
|
private Integer delFlag;
|
|
|
|
|
|
}
|