1、数据查询任务、指标、算例二次查询
This commit is contained in:
36
project/src/main/java/com/sdm/project/common/BaseEntity.java
Normal file
36
project/src/main/java/com/sdm/project/common/BaseEntity.java
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user