baoshiwei
2025-04-23 c2375c2bcc0bf9e6a3af7f9776d5a0eb14370b40
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;
    }
}