package cn.lili.modules.lmk.domain.entity;
|
|
import cn.lili.mybatis.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
/**
|
* 厨神类型
|
*
|
* @author wp
|
* @since 2025-06-13
|
*/
|
@Data
|
@TableName("lmk_kitchen_type")
|
public class KitchenType extends BaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableField("type_name")
|
/** 厨神类型 */
|
private String typeName;
|
|
@TableField("use_num")
|
/** 使用次数 */
|
private Long useNum;
|
|
@TableField("sort_num")
|
/** 排序字段 */
|
private Long sortNum;
|
|
|
}
|