package org.dromara.eims.domain;
|
|
import org.dromara.common.mybatis.core.domain.BaseEntity;
|
import com.baomidou.mybatisplus.annotation.*;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serial;
|
|
/**
|
* 设备类型对象 sys_equ_type
|
*
|
* @author zhuguifei
|
* @date 2025-01-06
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@TableName("sys_equ_type")
|
public class SysEquType extends BaseEntity {
|
|
@Serial
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 类型id
|
*/
|
@TableId(value = "equ_type_id")
|
private Long equTypeId;
|
|
/**
|
* 类型名称
|
*/
|
private String typeName;
|
|
/**
|
* 类型编码
|
*/
|
private String typeCode;
|
|
/**
|
* 父id
|
*/
|
private Long parentId;
|
|
/**
|
* 显示顺序
|
*/
|
private Long orderNum;
|
|
/**
|
* 菜单类型(M目录 C菜单 F按钮)
|
*/
|
private String menuType;
|
|
/**
|
* 菜单图标
|
*/
|
private String icon;
|
|
/**
|
* 菜单状态(0正常 1停用)
|
*/
|
private String status;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
|
}
|