37 lines
788 B
Java
37 lines
788 B
Java
package com.ruoyi.device.domain;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import lombok.Data;
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
/**
|
|
* 设备分类对象 as_device_classify
|
|
*
|
|
* @author qiuzhenzhao
|
|
* @date 2023-11-11
|
|
*/
|
|
@Data
|
|
@TableName(value = "as_device_classify")
|
|
public class AsDeviceClassify extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** 分类ID */
|
|
@Excel(name = "分类ID")
|
|
private Long classifyId;
|
|
|
|
/** 分类名称 */
|
|
@Excel(name = "分类名称")
|
|
private String classifyName;
|
|
|
|
/** 型号数 */
|
|
@Excel(name = "型号数")
|
|
private Integer modelNum;
|
|
|
|
/** 设备数 */
|
|
@Excel(name = "设备数")
|
|
private Integer deviceNum;
|
|
|
|
}
|