查看订货申请时是关联用户的特权

This commit is contained in:
2026-05-22 18:32:56 +08:00
parent 8f005fcd23
commit e3e3a625b4
2 changed files with 90 additions and 0 deletions

View File

@@ -75,4 +75,12 @@ public class LbPurchaseApply implements Serializable {
@TableField("update_time")
@Schema(description = "更新时间")
private LocalDateTime updateTime;
@TableField(exist = false)
@Schema(description = "申请人用户信息(非数据库字段)")
private LbUser applicantUser;
@TableField(exist = false)
@Schema(description = "推荐人用户信息(非数据库字段)")
private LbUser referrerUser;
}