package com.template.services; import com.template.model.pojo.SmartApply; import com.baomidou.mybatisplus.extension.service.IService; import com.template.model.pojo.SmartIdentity; import com.template.model.result.PageUtils; import com.template.model.vo.ApplyVo; import java.util.List; /** *

* 服务类 *

* * @author ceshi * @since 2023-12-04 */ public interface SmartApplyService extends IService { List queryApplys(); int insertSmartApply(SmartApply rns); int updateSmartApply(SmartApply rns); SmartApply queryApplyByName(String name); PageUtils queryPageSmartApplys(int currentPage, int pageCount, String name); int deleteSmartApplyById(int id); SmartApply getSmartById(int id); List queryAppletApplys(); }