add - 箱壳设备可视化看板设备参数信息
parent
629b027e9b
commit
9d2373cb9c
@ -0,0 +1,34 @@
|
||||
package com.productionboard.entity.TankShellDevice;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 设备参数信息
|
||||
* @author WenJY
|
||||
* @date 2022年06月09日 10:37
|
||||
*/
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = false)
|
||||
@Accessors(chain = true)
|
||||
@TableName("SCADA_PRAMERTER_VALUE")
|
||||
public class TankShellDevicePrameterValue implements Serializable {
|
||||
|
||||
@TableField("deviceid")
|
||||
private String deviceId;
|
||||
|
||||
@TableField("prametername")
|
||||
private String prameterName;
|
||||
|
||||
@TableField("value")
|
||||
private String prameterValue;
|
||||
|
||||
@TableField("createtime")
|
||||
private Date createTime;
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.productionboard.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.productionboard.entity.TankShellDevice.TankShellDevicePrameterValue;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* @author WenJY
|
||||
* @date 2022年06月09日 10:40
|
||||
*/
|
||||
@Mapper
|
||||
public interface TankShellDevicePrameterValueMapper extends BaseMapper<TankShellDevicePrameterValue> {
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue