1078-解析104中...

This commit is contained in:
648540858
2024-04-20 18:59:23 +08:00
parent c5ac7e218a
commit f9c22fcb3d
2 changed files with 11 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
package com.genersoft.iot.vmp.jt1078.bean;
import com.genersoft.iot.vmp.jt1078.bean.common.ConfigAttribute;
import com.genersoft.iot.vmp.jt1078.bean.config.IllegalDrivingPeriods;
import io.swagger.v3.oas.annotations.media.Schema;
/**
@@ -114,6 +115,9 @@ public class JTDeviceConfig {
@ConfigAttribute(id = 0x31, description = "电子围栏半径(非法位移國值) ,单位为米(m)")
private Integer fenceRadius;
@ConfigAttribute(id = 0x32, description = "违规行驶时段范围 ,精确到分")
private IllegalDrivingPeriods illegalDrivingPeriods;
// TODO 未完待续

View File

@@ -0,0 +1,7 @@
package com.genersoft.iot.vmp.jt1078.bean.config;
/**
* 违规行驶时段范围 ,精确到分
*/
public class IllegalDrivingPeriods {
}