71 lines
2.1 KiB
Plaintext
71 lines
2.1 KiB
Plaintext
package kr.co.i4way.manage.service;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Map;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import kr.co.i4way.manage.dao.ManageDao;
|
|
import kr.co.i4way.manage.model.CenterInfoVo;
|
|
import kr.co.i4way.manage.model.CommonInfoVo;
|
|
import kr.co.i4way.manage.model.ImageInfoVo;
|
|
import kr.co.i4way.manage.model.LoginVo;
|
|
import kr.co.i4way.manage.model.ObjInfoVo;
|
|
import kr.co.i4way.manage.model.UserInfoVo;
|
|
import kr.co.i4way.manage.model.WallInfoVo;
|
|
|
|
@Service
|
|
public class ManageService {
|
|
|
|
@Autowired ManageDao managedao;
|
|
|
|
public Map<String, Object> getLoginInfo(LoginVo avo) throws Exception{
|
|
return managedao.getLoginInfo(avo);
|
|
}
|
|
|
|
public ArrayList getWallInfo_Manage(WallInfoVo wallinfovo) throws Exception{
|
|
return managedao.getWallInfo_Manage(wallinfovo);
|
|
}
|
|
|
|
public ArrayList getCenterInfo_Manage(CenterInfoVo centerinfovo) throws Exception{
|
|
return managedao.getCenterInfo_Manage(centerinfovo);
|
|
}
|
|
|
|
public void insertCenterInfo(CenterInfoVo centerinfovo) throws Exception{
|
|
managedao.insertCenterInfo(centerinfovo);
|
|
}
|
|
|
|
public void updateCenterInfo(CenterInfoVo centerinfovo) throws Exception{
|
|
managedao.updateCenterInfo(centerinfovo);
|
|
}
|
|
|
|
public void deleteCenterInfo(CenterInfoVo centerinfovo) throws Exception{
|
|
managedao.deleteCenterInfo(centerinfovo);
|
|
}
|
|
|
|
public ArrayList getUserInfo_Manage(UserInfoVo userinfovo) throws Exception{
|
|
return managedao.getUserInfo_Manage(userinfovo);
|
|
}
|
|
|
|
public ArrayList getObjInfo_Manage(ObjInfoVo objinfovo) throws Exception{
|
|
return managedao.getObjInfo_Manage(objinfovo);
|
|
}
|
|
|
|
public ArrayList getImageInfo_Manage(ImageInfoVo imageinfovo) throws Exception{
|
|
return managedao.getImageInfo_Manage(imageinfovo);
|
|
}
|
|
|
|
public ArrayList getCommCode(CommonInfoVo commoninfovo) throws Exception{
|
|
return managedao.getCommCode(commoninfovo);
|
|
}
|
|
|
|
public ArrayList getImages(ImageInfoVo imageinfovo) throws Exception{
|
|
return managedao.getImages(imageinfovo);
|
|
}
|
|
|
|
public void saveWallInfo(WallInfoVo wallinfovo) throws Exception{
|
|
managedao.saveWallInfo(wallinfovo);
|
|
}
|
|
}
|
|
|