package com.java110.web.components.ownerRepair; import com.java110.core.context.IPageData; import com.java110.web.smo.ownerRepair.IListOwnerRepairsSMO; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Component; /** * @ClassName MyRepairDispatchComponent * @Description TODO * @Author wuxw * @Date 2019/10/20 18:21 * @Version 1.0 * add by wuxw 2019/10/20 **/ @Component("myRepairDispatch") public class MyRepairDispatchComponent { @Autowired private IListOwnerRepairsSMO listOwnerRepairsSMOImpl; /** * 查询业主报修列表 * @param pd 页面数据封装 * @return 返回 ResponseEntity 对象 */ public ResponseEntity list(IPageData pd){ return listOwnerRepairsSMOImpl.listOwnerRepairs(pd); } public IListOwnerRepairsSMO getListOwnerRepairsSMOImpl() { return listOwnerRepairsSMOImpl; } public void setListOwnerRepairsSMOImpl(IListOwnerRepairsSMO listOwnerRepairsSMOImpl) { this.listOwnerRepairsSMOImpl = listOwnerRepairsSMOImpl; } }