parent
3855664a7c
commit
fc8908816b
12 changed files with 36 additions and 148 deletions
@ -1,119 +0,0 @@ |
||||
/** |
||||
* BladeX Commercial License Agreement |
||||
* Copyright (c) 2018-2099, https://bladex.cn. All rights reserved.
|
||||
* <p> |
||||
* Use of this software is governed by the Commercial License Agreement |
||||
* obtained after purchasing a license from BladeX. |
||||
* <p> |
||||
* 1. This software is for development use only under a valid license |
||||
* from BladeX. |
||||
* <p> |
||||
* 2. Redistribution of this software's source code to any third party |
||||
* without a commercial license is strictly prohibited. |
||||
* <p> |
||||
* 3. Licensees may copyright their own code but cannot use segments |
||||
* from this software for such purposes. Copyright of this software |
||||
* remains with BladeX. |
||||
* <p> |
||||
* Using this software signifies agreement to this License, and the software |
||||
* must not be used for illegal purposes. |
||||
* <p> |
||||
* THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY. The author is |
||||
* not liable for any claims arising from secondary or illegal development. |
||||
* <p> |
||||
* Author: Chill Zhuang (bladejava@qq.com) |
||||
*/ |
||||
package org.springblade.scheduling.scheduling.entity; |
||||
|
||||
import lombok.Data; |
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import com.baomidou.mybatisplus.annotation.TableName; |
||||
import java.math.BigDecimal; |
||||
import java.util.Date; |
||||
import lombok.EqualsAndHashCode; |
||||
import org.springblade.core.mp.base.BaseEntity; |
||||
import org.springblade.core.tenant.mp.TenantEntity; |
||||
import java.io.Serial; |
||||
|
||||
/** |
||||
* 设备信息表 实体类 |
||||
* |
||||
* @author BladeX |
||||
* @since 2025-12-22 |
||||
*/ |
||||
@Data |
||||
@TableName("MES_EQUIPMENT") |
||||
@Schema(description = "MesEquipment对象") |
||||
@EqualsAndHashCode(callSuper = true) |
||||
public class EquipmentEntity extends BaseEntity { |
||||
|
||||
@Serial |
||||
private static final long serialVersionUID = 1L; |
||||
|
||||
/** |
||||
* 设备编码 |
||||
*/ |
||||
@Schema(description = "设备编码") |
||||
private String deviceCode; |
||||
/** |
||||
* 设备名称 |
||||
*/ |
||||
@Schema(description = "设备名称") |
||||
private String deviceName; |
||||
/** |
||||
* 类别名称 |
||||
*/ |
||||
@Schema(description = "类别名称") |
||||
private String typeName; |
||||
/** |
||||
* 规格型号 |
||||
*/ |
||||
@Schema(description = "规格型号") |
||||
private String macSpec; |
||||
/** |
||||
* 服役状态;1、正常服役,2、暂停服役 |
||||
*/ |
||||
@Schema(description = "服役状态;1、正常服役,2、暂停服役") |
||||
private BigDecimal used; |
||||
/** |
||||
* RFID |
||||
*/ |
||||
@Schema(description = "RFID") |
||||
private String rfId; |
||||
/** |
||||
* 虚拟设备;1.是, 0.否 |
||||
*/ |
||||
@Schema(description = "虚拟设备;1.是, 0.否") |
||||
private String virtualMac; |
||||
/** |
||||
* 是否对接;1.是, 0.否 |
||||
*/ |
||||
@Schema(description = "是否对接;1.是, 0.否") |
||||
private String docking; |
||||
/** |
||||
* 类别说明 |
||||
*/ |
||||
@Schema(description = "类别说明") |
||||
private String memo; |
||||
/** |
||||
* 绑定数量 |
||||
*/ |
||||
@Schema(description = "绑定数量") |
||||
private BigDecimal bindQty; |
||||
/** |
||||
* 设备分类 |
||||
*/ |
||||
@Schema(description = "设备分类") |
||||
private String category; |
||||
/** |
||||
* 设备ip |
||||
*/ |
||||
@Schema(description = "设备ip") |
||||
private String deviceIp; |
||||
/** |
||||
* 设备分类 |
||||
*/ |
||||
@Schema(description = "设备分类") |
||||
private String categorys; |
||||
|
||||
} |
||||
Loading…
Reference in new issue