package com.thhy.staff.modules.biz.dorm.service;
|
|
import com.thhy.staff.modules.biz.dorm.entity.Dorm;
|
import com.thhy.staff.modules.biz.dorm.entity.DormDto;
|
import com.thhy.staff.modules.biz.dorm.entity.DormListVo;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 服务类
|
* @author zhang_xiao_bo
|
* @since 2023-04-03 12:49:45
|
*/
|
public interface DormService {
|
|
Dorm get(Serializable id);
|
|
List<DormListVo> findList(DormDto dormDto);
|
|
void addDorm(DormDto dormDto);
|
|
void update(Dorm dorm);
|
|
void delete(Serializable id);
|
|
DormDto getDormInfo(Dorm dorm);
|
}
|