Blame view

service-community/src/main/java/com/java110/community/bmo/communitySetting/ISaveCommunitySettingBMO.java 390 Bytes
88e030b7   王彪总   init project
1
2
3
4
5
6
7
8
  package com.java110.community.bmo.communitySetting;
  
  import com.java110.po.community.CommunitySettingPo;
  import org.springframework.http.ResponseEntity;
  public interface ISaveCommunitySettingBMO {
  
  
      /**
9750b443   王彪总   fix(config): 更新配置...
9
       * 添加项目相关设置
88e030b7   王彪总   init project
10
11
12
13
14
15
16
17
       * add by wuxw
       * @param communitySettingPo
       * @return
       */
      ResponseEntity<String> save(CommunitySettingPo communitySettingPo);
  
  
  }