| | |
| | | |
| | | import java.util.Map; |
| | | |
| | | import com.ld.igds.models.InoutLossOver; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | |
| | | import com.bstek.dorado.annotation.Expose; |
| | | import com.bstek.dorado.data.provider.Page; |
| | | import com.ld.igds.m.service.HLossOverService; |
| | | import com.ld.igds.models.MLossOver; |
| | | |
| | | /** |
| | | * 综合业务-损溢管理 |
| | |
| | | * @throws Exception |
| | | */ |
| | | @DataProvider |
| | | public void pageData(Page<MLossOver> page, Map<String, Object> param) |
| | | public void pageData(Page<InoutLossOver> page, Map<String, Object> param) |
| | | throws Exception { |
| | | service.pageData(page, param); |
| | | } |
| | |
| | | * @throws Exception |
| | | */ |
| | | @DataResolver |
| | | public void saveData(MLossOver data) throws Exception { |
| | | public void saveData(InoutLossOver data) throws Exception { |
| | | service.saveData(data); |
| | | } |
| | | |
| | |
| | | * @throws Exception |
| | | */ |
| | | @Expose |
| | | public String delData(MLossOver data) throws Exception { |
| | | public String delData(InoutLossOver data) throws Exception { |
| | | return service.delData(data); |
| | | } |
| | | |