This commit is contained in:
dute7liang
2023-12-31 16:09:56 +08:00
parent d1a59f2d4a
commit 0c1fc3cada
230 changed files with 662 additions and 580 deletions

View File

@@ -0,0 +1,13 @@
package com.ruoyi.cai.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.cai.domain.GiveLog;
/**
* 赠送记录Service接口
*
* @author 77
* @date 2023-12-24
*/
public interface GiveLogService extends IService<GiveLog> {
}