出厂日期
This commit is contained in:
@ -1,9 +1,6 @@
|
||||
package com.fuyuanshen.equipment.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import com.fasterxml.jackson.annotation.JsonInclude;
|
||||
import com.fuyuanshen.common.tenant.core.TenantEntity;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
@ -32,6 +29,13 @@ public class Device extends TenantEntity {
|
||||
@TableField(exist = false)
|
||||
private Long assignId;
|
||||
|
||||
/**
|
||||
* 设备分组
|
||||
* group_id
|
||||
*/
|
||||
@Schema(name = "设备分组")
|
||||
private Long groupId;
|
||||
|
||||
/**
|
||||
* device_type
|
||||
*/
|
||||
@ -143,4 +147,11 @@ public class Device extends TenantEntity {
|
||||
*/
|
||||
private String subTopic;
|
||||
|
||||
/**
|
||||
* 出厂日期
|
||||
* production_date
|
||||
*/
|
||||
@Schema(name = "出厂日期")
|
||||
private Date productionDate;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user