1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.zhitan.engine.entity;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| @Data
| public class DataItemPK implements Serializable {
| private static final long serialVersionUID = 1L;
|
| private String indexId;
| private String timeCode;
|
| public DataItemPK() {}
|
| public DataItemPK(String indexId, String timeCode) {
| this.indexId = indexId;
| this.timeCode = timeCode;
| }
| }
|
|