1、数据查询任务、指标、算例二次查询

This commit is contained in:
2026-03-13 14:17:45 +08:00
parent fda7254e40
commit 0a7fe3b5d0

View File

@@ -0,0 +1,36 @@
package com.sdm.project.common;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.sdm.common.entity.bo.BaseBean;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
public class BaseEntity extends BaseBean {
private long id;
@Schema(description = "所属公司")
public String company;
@Schema(description = "更新者ID")
@JsonFormat(shape = JsonFormat.Shape.STRING)
public Long updater;
@Schema(description = "更新者名称")
public String updaterName;
@Schema(description = "更新时间")
public String updateTime;
@Schema(description = "租户ID")
@JsonFormat(shape = JsonFormat.Shape.STRING)
public Long tenantId;
@Schema(description = "模版创建者名称")
public String createName;
@Schema(description = "创建者ID")
@JsonFormat(shape = JsonFormat.Shape.STRING)
public Long creator;
public String creatorName;
}