设备二维码生成功能

This commit is contained in:
2023-08-21 16:15:10 +08:00
parent af4c462843
commit 393f6973fa
6 changed files with 210 additions and 6 deletions

View File

@@ -0,0 +1,19 @@
package com.njcn.csdevice.pojo.param;
import lombok.Data;
/**
* 类的介绍:
*
* @author xuyang
* @version 1.0.0
* @createTime 2023/8/21 16:00
*/
@Data
public class QrParam {
private String type = "NDID";
private String data;
}

View File

@@ -138,5 +138,10 @@ public class CsEquipmentDeliveryPO extends BaseEntity {
@TableField(value = "module_number")
private Integer moduleNumber;
/**
* 二维码文件路径
*/
@TableField(value = "qr_path")
private String qrPath;
}

View File

@@ -114,4 +114,7 @@ public class CsEquipmentDeliveryVO extends BaseEntity {
@ApiModelProperty(value="设备软件信息")
private String softinfoId ;
@ApiModelProperty(value="二维码路径")
private String qrPath ;
}