mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-19 17:35:54 +08:00
+f;新增授权码功能
1、产品表添加 is_authorize 是否启用授权码字段; 2、产品授权码功能:基础增删改查、批量生成授权码、绑定设备。
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package com.ruoyi.iot.model;
|
||||
|
||||
/**
|
||||
* 批量新增产品授权码VO
|
||||
*
|
||||
* @author Venus Zhang
|
||||
* @create 2022-04-11 15:04
|
||||
*/
|
||||
|
||||
public class ProductAuthorizeVO {
|
||||
|
||||
private Long productId;
|
||||
private int createNum;
|
||||
|
||||
public Long getProductId() {
|
||||
return productId;
|
||||
}
|
||||
|
||||
public void setProductId(Long productId) {
|
||||
this.productId = productId;
|
||||
}
|
||||
|
||||
public int getCreateNum() {
|
||||
return createNum;
|
||||
}
|
||||
|
||||
public void setCreateNum(int createNum) {
|
||||
this.createNum = createNum;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user