package com.iailab.module.model.mpk.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @author PanZhibao
|
* @Description
|
* @createTime 2024年11月05日
|
*/
|
@Data
|
@TableName("t_mpk_pack")
|
public class PackEntity implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id
|
*/
|
@TableId
|
private String id;
|
|
/**
|
* 包名称
|
*/
|
private String packName;
|
|
/**
|
* 包描述
|
*/
|
private String packDesc;
|
|
/**
|
* 模型路径
|
*/
|
private String modelPath;
|
|
/**
|
* 排序
|
*/
|
private Integer sort;
|
}
|