物联用户权限功能添加

This commit is contained in:
xy
2025-11-14 10:01:55 +08:00
parent 340ba18f99
commit adb811e9df
24 changed files with 588 additions and 36 deletions

View File

@@ -105,4 +105,27 @@ public class CsLineParam extends BaseEntity {
* 运行状态0运行1检修2停运3调试4退运
*/
private Integer runStatus;
/**
* 短路容量
*/
private Integer shortCircuitCapacity;
/**
* 设备容量
*/
private Integer devCapacity;
/**
* 基准容量
*/
private Integer basicCapacity;
/**
* 协议容量
*/
private Integer protocolCapacity;
}

View File

@@ -0,0 +1,18 @@
package com.njcn.csdevice.pojo.param;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
import java.util.List;
@Data
public class UserDevParam implements Serializable {
@ApiModelProperty(value="用户id")
private String userId;
@ApiModelProperty(value="设备集合id")
private List<String> list;
}