package com.thhy.mobile.modules.biz.repo.entity;
|
|
import com.thhy.general.annotations.Idkey;
|
import lombok.Data;
|
import lombok.experimental.Accessors;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
*
|
* @author zhang_xiao_bo
|
* @since 2023-05-15 14:00:39
|
*/
|
@Data
|
@Accessors(chain = true)
|
public class RepoRecordPipe implements Serializable {
|
|
|
|
@Idkey
|
private String id;
|
|
|
|
|
private String pipeNum;
|
|
|
|
private String recordId;
|
|
|
|
private String ringNum;
|
|
private String repoId;
|
|
private Date createTime;
|
|
public RepoRecordPipe() {
|
}
|
|
public RepoRecordPipe(String pipeNum, String recordId, String ringNum,String repoId,Date createTime) {
|
this.pipeNum = pipeNum;
|
this.recordId = recordId;
|
this.ringNum = ringNum;
|
this.repoId = repoId;
|
this.createTime = createTime;
|
}
|
}
|