ÎļþÃû´Ó igds-core/src/main/java/com/ld/igds/models/DeviceModbus.java ÐÞ¸Ä |
| | |
| | | package com.ld.igds.models; |
| | | |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import com.ld.igds.constant.BizType; |
| | | import com.ld.igds.constant.Constant; |
| | | import lombok.Data; |
| | | |
| | | import javax.persistence.*; |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * æ ¹æ®è®¾å¤é
ç½®çModbus-TCPåæ°é
ç½® |
| | |
| | | @PropertyDef(label = "设å¤ç¼ç ") |
| | | private String deviceCode; |
| | | |
| | | @Column(name = "BIZ_TYEP_", length = 10) |
| | | @PropertyDef(label = "ä¸å¡ç±»å") |
| | | private String bizType = BizType.AREATION.getCode(); |
| | | |
| | | @Column(name = "OPEN_", length = 10) |
| | | @PropertyDef(label = "å¼å°å") |
| | | private String open = Constant.YN_N; |
| | | |
| | | |
| | | @Column(name = "OPEN_FUN", length = 4) |
| | | @PropertyDef(label = "åè½å·") |
| | |
| | | @PropertyDef(label = "åè½å·") |
| | | private String closeErrorFun = "99"; |
| | | |
| | | |
| | | @Transient |
| | | private List<GasModbus> listGas; |
| | | |
| | | } |