喜喜检查项的代码框架

This commit is contained in:
2026-04-06 12:18:04 +08:00
parent 09698ad7d0
commit 1a7e4347fd
15 changed files with 806 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
package com.rj.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.rj.entity.LoveCheckItem;
/**
* 恋爱/择偶检查项表 服务类
*
* @author system
* @since 2026-04-06
*/
public interface ILoveCheckItemService extends IService<LoveCheckItem> {
}