提交 | 用户 | 时间 | ||
9d7e02 | 1 | package com.iailab.module.data.channel.opcda.dto; |
潘 | 2 | |
3 | import lombok.Data; | |
4 | import org.jinterop.dcom.core.JIVariant; | |
5 | import org.openscada.opc.lib.da.Item; | |
6 | ||
7 | import java.io.Serializable; | |
8 | ||
9 | @Data | |
10 | public class WriteDTO implements Serializable { | |
11 | private static final long serialVersionUID = 1L; | |
12 | ||
13 | private Item item; | |
14 | private JIVariant value; | |
15 | } |