添加查询投诉和屏蔽列表查询

This commit is contained in:
chenshaohua
2026-07-09 19:56:55 +08:00
parent 5f216fa68d
commit b2784c0ac1
8 changed files with 67 additions and 25 deletions

View File

@@ -22,4 +22,9 @@ public class AppUserBlockCompany extends BaseEntity {
/** 被屏蔽企业ID */
private Long companyId;
@TableField(exist = false)
private String companyName;
@TableField(exist = false)
private String name;
}

View File

@@ -65,4 +65,13 @@ public class AppUserJobComplaint extends BaseEntity {
/** 处理时间 */
@ApiModelProperty("处理时间")
private LocalDateTime handleTime;
@TableField(exist = false)
private Long companyId;
@TableField(exist = false)
private String companyName;
@TableField(exist = false)
private String jobTitle;
@TableField(exist = false)
private String name;
}