feat(system): 为 SysPicture及其相关模型添加价格字段- 在 SysPicture、SysPictureBo 和 SysPictureVo 中添加原价 (originalPrice) 和优惠价 (discountPrice) 字段

- 使用 BigDecimal 类型来精确表示价格信息
This commit is contained in:
清晨
2025-08-02 15:03:36 +08:00
parent 153d57bac2
commit ea517365d7
4 changed files with 38 additions and 1 deletions

View File

@@ -89,6 +89,14 @@ public interface ITzUserService extends MPJBaseService<TzUser> {
*/
Boolean submitSjsAuth(TzUserBo bo);
/**
* 根据手机号查询用户信息
*
* @param userPhone 手机号
* @return 用户信息
*/
TzUserVo queryUserInfoByPhone(String userPhone);
/**
* 查询用户下单排行榜列表
*/