chat_add
This commit is contained in:
9
app/chat/model/BaseModel.php
Normal file
9
app/chat/model/BaseModel.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
namespace app\chat\model;
|
||||
|
||||
|
||||
|
||||
abstract class BaseModel
|
||||
{
|
||||
|
||||
}
|
||||
9
app/chat/model/ChatCommonPhrase.php
Normal file
9
app/chat/model/ChatCommonPhrase.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<?php
|
||||
namespace app\chat\model;
|
||||
|
||||
class ChatCommonPhrase extends BaseModel
|
||||
{
|
||||
|
||||
public $tabla_name = 'chat_common_phrase';
|
||||
|
||||
}
|
||||
7
app/chat/model/ChatDoNotDisturb.php
Normal file
7
app/chat/model/ChatDoNotDisturb.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
namespace app\chat\model;
|
||||
|
||||
class ChatDoNotDisturb extends BaseModel
|
||||
{
|
||||
public $tabla_name = 'chat_do_not_disturb';
|
||||
}
|
||||
8
app/chat/model/ChatGroup.php
Normal file
8
app/chat/model/ChatGroup.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace app\chat\model;
|
||||
|
||||
|
||||
class ChatGroup extends BaseModel
|
||||
{
|
||||
public $tabla_name = 'chat_group';
|
||||
}
|
||||
8
app/chat/model/ChatGroupMember.php
Normal file
8
app/chat/model/ChatGroupMember.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace app\chat\model;
|
||||
|
||||
|
||||
class ChatGroupMember extends BaseModel
|
||||
{
|
||||
public $tabla_name = 'chat_group_member';
|
||||
}
|
||||
8
app/chat/model/ChatGroupMute.php
Normal file
8
app/chat/model/ChatGroupMute.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace app\chat\model;
|
||||
|
||||
|
||||
class ChatGroupMute extends BaseModel
|
||||
{
|
||||
public $tabla_name = 'chat_group_mute';
|
||||
}
|
||||
8
app/chat/model/ChatMessage.php
Normal file
8
app/chat/model/ChatMessage.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace app\chat\model;
|
||||
|
||||
|
||||
class ChatMessage extends BaseModel
|
||||
{
|
||||
public $tabla_name = 'chat_message';
|
||||
}
|
||||
8
app/chat/model/ChatTop.php
Normal file
8
app/chat/model/ChatTop.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace app\chat\model;
|
||||
|
||||
|
||||
class ChatTop extends BaseModel
|
||||
{
|
||||
public $tabla_name = 'chat_top';
|
||||
}
|
||||
8
app/chat/model/ChatUnreadCount.php
Normal file
8
app/chat/model/ChatUnreadCount.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace app\chat\model;
|
||||
|
||||
|
||||
class ChatUnreadCount extends BaseModel
|
||||
{
|
||||
public $tabla_name = 'chat_unread_count';
|
||||
}
|
||||
8
app/chat/model/ChatUser.php
Normal file
8
app/chat/model/ChatUser.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
namespace app\chat\model;
|
||||
|
||||
|
||||
class ChatUser extends BaseModel
|
||||
{
|
||||
public $tabla_name = 'chat_user';
|
||||
}
|
||||
Reference in New Issue
Block a user