|
|
@@ -0,0 +1,17 @@
|
|
|
+package com.yunfeiyun.agmp.iot.common.domain;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class IotSfIrrigationOprecord extends IotBaseEntity {
|
|
|
+
|
|
|
+ private Integer id; // 自增id
|
|
|
+ private String oprcdBid; // 唯一标识
|
|
|
+ private String devBid; // 设备标识
|
|
|
+ private String oprecdName; // 操作名称
|
|
|
+ private String oprecdContent; // 操作内容
|
|
|
+ private String oprecdStatus; // 操作状态 0 关闭 1 打开
|
|
|
+ private String oprcdCreatorName; // 操作用户名称
|
|
|
+ private String oprcdCreateddate; // 创建时间
|
|
|
+ private String tid;
|
|
|
+}
|