feat(sis): 人像关系id
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
zcxlsm 2025-07-14 14:32:08 +08:00
parent 2d14253d5c
commit 83cc3a4f84
3 changed files with 19 additions and 2 deletions

View File

@ -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;

View File

@ -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
*/

View File

@ -25,6 +25,12 @@ public class SisLibImgRefVo implements Serializable {
@Serial
private static final long serialVersionUID = 1L;
/**
* 主键id
*/
@ExcelProperty(value = "主键id")
private Long id;
/**
* 人像库id
*/