EnrollDao.java 471 Bytes
Newer Older
Shen's avatar
Shen committed
1 2 3
package io.hmit.modules.serviceOrder.dao;

import io.hmit.common.dao.BaseDao;
4
import io.hmit.modules.serviceOrder.dto.EnrollDTO;
Shen's avatar
Shen committed
5 6 7
import io.hmit.modules.serviceOrder.entity.EnrollEntity;
import org.apache.ibatis.annotations.Mapper;

8 9
import java.util.List;

Shen's avatar
Shen committed
10 11 12 13 14 15 16 17
/**
 * 报名表
 *
 * @author Shen Yuanfeng syf0412@vip.qq.com
 * @since 1.0.0 2021-05-12
 */
@Mapper
public interface EnrollDao extends BaseDao<EnrollEntity> {
18 19 20

    List<EnrollDTO> getEnrollByOrgId(Long orgId);

Shen's avatar
Shen committed
21
}