IDeleteSystemGoldSettingBMO.java 397 B

123456789101112131415161718
  1. package com.java110.acct.bmo.systemGoldSetting;
  2. import com.java110.po.systemGoldSetting.SystemGoldSettingPo;
  3. import org.springframework.http.ResponseEntity;
  4. public interface IDeleteSystemGoldSettingBMO {
  5. /**
  6. * 修改金币设置
  7. * add by wuxw
  8. * @param systemGoldSettingPo
  9. * @return
  10. */
  11. ResponseEntity<String> delete(SystemGoldSettingPo systemGoldSettingPo);
  12. }