| 12345678910111213141516171819202122232425262728293031323334353637 |
- package com.ggits.comm.server.process.dbms;
- import com.ggits.comm.server.dto.RegionCenter;
- import lombok.Getter;
- import lombok.Setter;
- @Getter
- @Setter
- public class DbmsData {
- public static final int DBMS_DATA_PROCESS_STTS = 0;
- public static final int DBMS_DATA_CENTER_STTS = 1;
- public static final int DBMS_DATA_INT_STATUS_UPDATE = 2;
- private RegionCenter center;
- private int qIdx;
- private long timestamp;
- private long popTimestamp;
- private long parseTimestamp;
- private String regionCd;
- private int regionId;
- private int type;
- private Object data;
- public DbmsData(RegionCenter center, int qIdx, long timestamp, long popTimestamp, long parseTimestamp, String regionCd, int regionId, int type, Object data) {
- this.center = center;
- this.qIdx = qIdx;
- this.timestamp = timestamp;
- this.popTimestamp = popTimestamp;
- this.parseTimestamp = parseTimestamp;
- this.regionCd = regionCd;
- this.regionId = regionId;
- this.type = type;
- this.data = data;
- }
- }
|