| 123456789101112131415161718 |
- package com.java110.acct.bmo.systemGoldSetting;
- import com.java110.po.systemGoldSetting.SystemGoldSettingPo;
- import org.springframework.http.ResponseEntity;
- public interface IDeleteSystemGoldSettingBMO {
- /**
- * 修改金币设置
- * add by wuxw
- * @param systemGoldSettingPo
- * @return
- */
- ResponseEntity<String> delete(SystemGoldSettingPo systemGoldSettingPo);
- }
|