old mode 100644
new mode 100755
| | |
| | | import com.java110.dto.PageDto; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @ClassName FloorDto |
| | |
| | | **/ |
| | | public class MachineDto extends PageDto implements Serializable { |
| | | |
| | | public static final String MACHINE_TYPE_CAR = "9996"; |
| | | public static final String MACHINE_TYPE_CAR = "9996";//自有道闸设备道闸 |
| | | public static final String MACHINE_TYPE_CAR_THIRD = "9995";//第三方道闸平台 |
| | | public static final String MACHINE_TYPE_ACCESS_CONTROL = "9999"; |
| | | public static final String MACHINE_TYPE_ATTENDANCE = "9997"; // 考勤机 |
| | | public static final String MACHINE_TYPE_MONITOR = "9998"; // 监控 |
| | | public static final String MACHINE_STATE_ON = "1200"; |
| | | public static final String MACHINE_STATE_OFF = "1300"; |
| | | |
| | | public static final String DIRECTION_IN = "3306"; //进场 |
| | | public static final String DIRECTION_OUT = "3307"; //出场 |
| | | |
| | | private String machineMac; |
| | | private String machineId; |
| | |
| | | private String communityId; |
| | | private String machineName; |
| | | private String machineTypeCd; |
| | | private String[] machineTypeCds; |
| | | private String locationType; |
| | | private String machineTypeCdName; |
| | | private String machineIp; |
| | |
| | | private String locationObjName; |
| | | private String direction;//设备方向 |
| | | private String directionName; |
| | | private String typeId; |
| | | private String domain; |
| | | |
| | | private List<MachineAttrDto> machineAttrs; |
| | | |
| | | |
| | | |
| | | private String createTime; |
| | | |
| | | private String statusCd = "0"; |
| | | private String heartbeatTime; |
| | | |
| | | |
| | | public String getMachineMac() { |
| | |
| | | public void setLocationType(String locationType) { |
| | | this.locationType = locationType; |
| | | } |
| | | |
| | | public List<MachineAttrDto> getMachineAttrs() { |
| | | return machineAttrs; |
| | | } |
| | | |
| | | public void setMachineAttrs(List<MachineAttrDto> machineAttrs) { |
| | | this.machineAttrs = machineAttrs; |
| | | } |
| | | |
| | | public String getHeartbeatTime() { |
| | | return heartbeatTime; |
| | | } |
| | | |
| | | public void setHeartbeatTime(String heartbeatTime) { |
| | | this.heartbeatTime = heartbeatTime; |
| | | } |
| | | |
| | | public String getTypeId() { |
| | | return typeId; |
| | | } |
| | | |
| | | public void setTypeId(String typeId) { |
| | | this.typeId = typeId; |
| | | } |
| | | |
| | | public String getDomain() { |
| | | return domain; |
| | | } |
| | | |
| | | public void setDomain(String domain) { |
| | | this.domain = domain; |
| | | } |
| | | |
| | | public String[] getMachineTypeCds() { |
| | | return machineTypeCds; |
| | | } |
| | | |
| | | public void setMachineTypeCds(String[] machineTypeCds) { |
| | | this.machineTypeCds = machineTypeCds; |
| | | } |
| | | } |