You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.3 KiB
65 lines
1.3 KiB
|
|
package service.impl;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
import com.dao.CommonDao;
|
|
import com.service.CommonService;
|
|
|
|
|
|
/**
|
|
* 系统用户
|
|
*/
|
|
@Service("commonService")
|
|
public class CommonServiceImpl implements CommonService {
|
|
|
|
@Autowired
|
|
private CommonDao commonDao;
|
|
|
|
@Override
|
|
public List<String> getOption(Map<String, Object> params) {
|
|
return commonDao.getOption(params);
|
|
}
|
|
|
|
@Override
|
|
public List<String> getzhuohaoOption(Map<String, Object> params) {
|
|
return commonDao.getzhuohaoOption(params);
|
|
}
|
|
|
|
@Override
|
|
public Map<String, Object> getFollowByOption(Map<String, Object> params) {
|
|
return commonDao.getFollowByOption(params);
|
|
}
|
|
|
|
@Override
|
|
public void sh(Map<String, Object> params) {
|
|
commonDao.sh(params);
|
|
}
|
|
|
|
@Override
|
|
public int remindCount(Map<String, Object> params) {
|
|
return commonDao.remindCount(params);
|
|
}
|
|
|
|
@Override
|
|
public Map<String, Object> selectCal(Map<String, Object> params) {
|
|
return commonDao.selectCal(params);
|
|
}
|
|
|
|
@Override
|
|
public List<Map<String, Object>> selectGroup(Map<String, Object> params) {
|
|
return commonDao.selectGroup(params);
|
|
}
|
|
|
|
@Override
|
|
public List<Map<String, Object>> selectValue(Map<String, Object> params) {
|
|
return commonDao.selectValue(params);
|
|
}
|
|
|
|
}
|