PushContainerHandleImpl.java
450 Bytes
package com.huaheng.api.acs.service;
import com.huaheng.api.acs.domain.pushContainer.PushContainerModel;
import com.huaheng.framework.web.domain.AjaxResult;
import org.springframework.stereotype.Service;
/***
* @author tongzonghao
*
*/
@Service
public class PushContainerHandleImpl implements PushContainerHandle {
@Override
public AjaxResult pushContainerPosition(PushContainerModel pushContainerModel) {
return null;
}
}