记录 用户头像 昵称

This commit is contained in:
2025-12-05 17:23:56 +08:00
parent d19c85799c
commit fe6e21cde9
3 changed files with 23 additions and 14 deletions

View File

@@ -1,11 +1,11 @@
package com.czg.market.service;
import com.czg.market.dto.ChatCouponDTO;
import com.czg.market.entity.MkShopCouponRecord;
import com.czg.market.dto.MkShopCouponRecordDTO;
import com.czg.market.entity.ChatCoupon;
import com.czg.market.vo.ChatCouponVO;
import com.mybatisflex.core.paginate.Page;
import com.mybatisflex.core.service.IService;
import com.czg.market.entity.ChatCoupon;
/**
* 服务层。
@@ -38,5 +38,5 @@ public interface ChatCouponService extends IService<ChatCoupon> {
/**
* 分页查询优惠券发放记录
*/
Page<MkShopCouponRecord> grantChatCouponRecord(Long id, Integer status, Integer page, Integer size);
Page<MkShopCouponRecordDTO> grantChatCouponRecord(Long id, Integer status, Integer page, Integer size);
}