UserDisableServiceImpl.java
681 Bytes
package com.bjivt.service.showtime.impl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.bjivt.base.dao.BaseDao;
import com.bjivt.base.service.impl.BaseServiceImpl;
import com.bjivt.dao.showtime.UserDisableDao;
import com.bjivt.entity.showtime.UserDisable;
import com.bjivt.service.showtime.UserDisableService;
@Component
public class UserDisableServiceImpl extends BaseServiceImpl<UserDisable, Integer> implements UserDisableService {
@Autowired
private UserDisableDao userDisableDao;
@Override
public BaseDao getBaseDao() {
// TODO Auto-generated method stub
return userDisableDao;
}
}