fix:物模型数据标识符修改
parent
70a6d9b058
commit
67c3cbb57e
|
@ -1120,7 +1120,7 @@
|
|||
"model": {
|
||||
"properties": [
|
||||
{
|
||||
"identifier": "9010",
|
||||
"identifier": "p9010",
|
||||
"dataType": {
|
||||
"type": "text",
|
||||
"specs": {
|
||||
|
@ -1131,7 +1131,7 @@
|
|||
"accessMode": "r"
|
||||
},
|
||||
{
|
||||
"identifier": "9410",
|
||||
"identifier": "p9410",
|
||||
"dataType": {
|
||||
"type": "text",
|
||||
"specs": {
|
||||
|
|
|
@ -15,59 +15,56 @@ import java.io.Serializable;
|
|||
@Data
|
||||
@ExcelIgnoreUnannotated
|
||||
@AutoMapper(target = Product.class)
|
||||
|
||||
public class ProductVo implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1L;
|
||||
|
||||
@ApiModelProperty(value="产品id")
|
||||
@ApiModelProperty(value = "产品id")
|
||||
@ExcelProperty(value = "产品id")
|
||||
private Long id;
|
||||
|
||||
@ApiModelProperty(value="产品id")
|
||||
@ApiModelProperty(value = "产品id")
|
||||
@ExcelProperty(value = "产品id")
|
||||
private String productKey;
|
||||
|
||||
@ApiModelProperty(value="产品密钥")
|
||||
@ApiModelProperty(value = "产品密钥")
|
||||
@ExcelProperty(value = "产品密钥")
|
||||
private String productSecret;
|
||||
|
||||
@ApiModelProperty(value="品类")
|
||||
@ApiModelProperty(value = "品类")
|
||||
@ExcelProperty(value = "品类")
|
||||
private String category;
|
||||
|
||||
@ApiModelProperty(value="创建时间")
|
||||
@ApiModelProperty(value = "创建时间")
|
||||
@ExcelProperty(value = "创建时间")
|
||||
private Long createAt;
|
||||
|
||||
@ApiModelProperty(value="图片")
|
||||
@ApiModelProperty(value = "图片")
|
||||
@ExcelProperty(value = "图片")
|
||||
private String img;
|
||||
|
||||
@ApiModelProperty(value="产品名称")
|
||||
@ApiModelProperty(value = "产品名称")
|
||||
@ExcelProperty(value = "产品名称")
|
||||
private String name;
|
||||
|
||||
@ApiModelProperty(value="节点类型")
|
||||
@ApiModelProperty(value = "节点类型")
|
||||
@ExcelProperty(value = "节点类型")
|
||||
private Integer nodeType;
|
||||
|
||||
@ApiModelProperty(value="是否透传,true/false")
|
||||
@ApiModelProperty(value = "是否透传,true/false")
|
||||
@ExcelProperty(value = "是否透传,true/false")
|
||||
private Boolean transparent;
|
||||
|
||||
@ApiModelProperty(value="是否开启设备定位,true/false")
|
||||
@ApiModelProperty(value = "是否开启设备定位,true/false")
|
||||
@ExcelProperty(value = "是否开启设备定位,true/false")
|
||||
private Boolean isOpenLocate;
|
||||
|
||||
@ApiModelProperty(value="定位更新方式")
|
||||
@ApiModelProperty(value = "定位更新方式")
|
||||
@ExcelProperty(value = "定位更新方式")
|
||||
private String locateUpdateType;
|
||||
|
||||
@ApiModelProperty(value="用户ID")
|
||||
@ApiModelProperty(value = "用户ID")
|
||||
@ExcelProperty(value = "用户ID")
|
||||
private String uid;
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue