You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
410 B
30 lines
410 B
package com.mh.user.model; |
|
|
|
import lombok.Data; |
|
|
|
/** |
|
* @author LJF |
|
* @version 1.0 |
|
* @project EEMCS |
|
* @description 研华数据体 |
|
* @date 2025-01-22 14:47:25 |
|
*/ |
|
@Data |
|
public class SanShiFengDatas<T extends Number> { |
|
|
|
/** |
|
* 对应研华的标签值 |
|
*/ |
|
private String tag; |
|
|
|
/** |
|
* 上报值 |
|
*/ |
|
private T value; |
|
|
|
/** |
|
* 质量值 |
|
*/ |
|
private T quality; |
|
|
|
}
|
|
|