Browse Source

Merge branch 'master' of http://git.huxiukeji.com/lizhen/xiaoyou

panda 10 months ago
parent
commit
f084b83f9b
1 changed files with 4 additions and 4 deletions
  1. 4 4
      application/api/controller/User.php

+ 4 - 4
application/api/controller/User.php

@@ -2282,7 +2282,7 @@ class User extends Api
         $this->success('绑定成功');
     }
 
-    //添加打招呼内容
+    //添加打招呼内容,女性使用
     public function addgreetcontent() {
         $type = input('type', 0, 'intval'); //类型:0=文字,1=语音,2=相册
         $title = input('title', '', 'trim'); //标题(type=1必传)
@@ -2337,7 +2337,7 @@ class User extends Api
         $this->success('设置成功');
     }
 
-    //查询打招呼内容
+    //查询打招呼内容,女性使用
     public function getgreetcontent() {
         $type = input('type', 0, 'intval'); //类型:0=文字,1=语音,2=相册,3=所有招呼
         if (!in_array($type, [0, 1, 2, 3])) {
@@ -2367,7 +2367,7 @@ class User extends Api
         $this->success('打招呼内容', $list);
     }
     
-    //设置默认打招呼内容
+    //设置默认打招呼内容,女性使用
     public function setdefaultgreet() {
         $id = input('id', 0, 'intval'); //打招呼id
         if (!$id) {
@@ -2398,7 +2398,7 @@ class User extends Api
         $this->success('设置成功');
     }
 
-    //删除打招呼内容
+    //删除打招呼内容,女性使用
     public function deldefaultgreet() {
         $id = input('id', 0, 'intval'); //打招呼id
         if (!$id) {