feat(sis): 人像关系id
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
parent
2d14253d5c
commit
83cc3a4f84
@ -21,16 +21,21 @@ public class SisLibImgRef extends TenantEntity {
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
|
||||
/**
|
||||
* id
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 人像库id
|
||||
*/
|
||||
@TableId(value = "lib_id")
|
||||
private Long libId;
|
||||
|
||||
/**
|
||||
* 人像id
|
||||
*/
|
||||
@TableId(value = "img_id")
|
||||
private Long imgId;
|
||||
|
||||
|
||||
|
@ -20,6 +20,12 @@ import jakarta.validation.constraints.*;
|
||||
@AutoMapper(target = SisLibImgRef.class, reverseConvertGenerate = false)
|
||||
public class SisLibImgRefBo extends BaseEntity {
|
||||
|
||||
/**
|
||||
* 主键id
|
||||
*/
|
||||
@NotNull(message = "主键id不能为空", groups = { EditGroup.class })
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 人像库id
|
||||
*/
|
||||
|
@ -25,6 +25,12 @@ public class SisLibImgRefVo implements Serializable {
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键id
|
||||
*/
|
||||
@ExcelProperty(value = "主键id")
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* 人像库id
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user