| | |
| | | import com.bstek.dorado.annotation.Expose; |
| | | import com.bstek.dorado.data.provider.Page; |
| | | import com.ld.igds.m.service.HVarietyChangeService; |
| | | import com.ld.igds.models.MVarietyChange; |
| | | |
| | | /** |
| | | * 综合业务-粮食品种变更记录 |
| | |
| | | * @throws Exception |
| | | */ |
| | | @DataProvider |
| | | public void pageData(Page<MVarietyChange> page, Map<String, Object> param) |
| | | public void pageData(Page<InoutVarietyChange> page, Map<String, Object> param) |
| | | throws Exception { |
| | | service.pageData(page, param); |
| | | } |
| | |
| | | * @param data |
| | | */ |
| | | @DataResolver |
| | | public void saveData(MVarietyChange data) { |
| | | public void saveData(InoutVarietyChange data) { |
| | | service.saveData(data); |
| | | } |
| | | |
| | |
| | | * @return |
| | | */ |
| | | @Expose |
| | | public String delData(MVarietyChange data) { |
| | | public String delData(InoutVarietyChange data) { |
| | | return service.delData(data); |
| | | } |
| | | |