54 lines
1.2 KiB
Java
54 lines
1.2 KiB
Java
package com.ruoyi.device.mapper.entity;
|
|
|
|
import com.ruoyi.common.core.web.domain.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* 无人机负载槽位表实体对象 device_air_load_slot
|
|
* Mapper 层实体,对应数据库表
|
|
*
|
|
* @author 拓恒
|
|
* @date 2026-03-04
|
|
*/
|
|
@EqualsAndHashCode(callSuper = true)
|
|
@Data
|
|
public class DeviceAirLoadSlotEntity extends BaseEntity
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** 主键 */
|
|
private Long id;
|
|
|
|
/** 无人机厂商ID */
|
|
private Long vendorId;
|
|
|
|
/** 无人机主类型 */
|
|
private Long type;
|
|
|
|
/** 无人机子类型 */
|
|
private Long subType;
|
|
|
|
/** 槽位数 */
|
|
private Integer slotCount;
|
|
|
|
/** 负载数量限制 */
|
|
private Integer loadLimit;
|
|
|
|
/** 配件限制数量 */
|
|
private Integer accessoryLimit;
|
|
|
|
@Override
|
|
public String toString()
|
|
{
|
|
return "DeviceAirLoadSlotEntity{" +
|
|
"id=" + id +
|
|
", vendorId=" + vendorId +
|
|
", type=" + type +
|
|
", subType=" + subType +
|
|
", slotCount=" + slotCount +
|
|
", loadLimit=" + loadLimit +
|
|
", accessoryLimit=" + accessoryLimit +
|
|
'}';
|
|
}
|
|
} |