初始化提交

This commit is contained in:
2021-01-20 18:26:47 +08:00
commit 2cedd64270
70 changed files with 3423 additions and 0 deletions

View File

@ -0,0 +1,9 @@
package business.cooperop.base.mapper;
import business.cooperop.base.entity.Application;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface ApplicationMapper extends BaseMapper<Application> {
}