This commit is contained in:
caozehui
2026-04-16 11:43:41 +08:00
parent d8bcca1ede
commit a2468f1353
13 changed files with 146 additions and 58 deletions

View File

@@ -0,0 +1,26 @@
package com.njcn.gather.dip.pojo.po.vo;
import lombok.Data;
/**
* @author caozehui
* @data 2026-04-16
*/
@Data
public class DipPoint {
/**
* 残余电压,单位:%Ur
*/
private Double residualVoltage;
/**
* 持续时间单位ms
*/
private Integer durationMs;
/**
* 0为不耐受1为耐受
*/
private Boolean tolerant;
}