Blame view

AdministerMapper.java 362 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8
package com.subsidy.mapper;

import com.subsidy.model.AdministerDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;

/**
 * <p>
涂亚平 committed
9
 * 中心管理账户表 Mapper 接口
涂亚平 committed
10 11 12
 * </p>
 *
 * @author Tuyp
涂亚平 committed
13
 * @since 2025-01-08
涂亚平 committed
14 15 16 17 18
 */
 @Repository
public interface AdministerMapper extends BaseMapper<AdministerDO> {

}