12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- namespace app\model\work;
- use crmeb\basic\BaseModel;
- use crmeb\traits\ModelTrait;
- class WorkGroupMsgSendResult extends BaseModel
- {
- use ModelTrait;
-
- protected $name = 'work_group_msg_send_result';
-
- protected $key = 'id';
-
- protected $autoWriteTimestamp = 'int';
-
- public function client()
- {
- return $this->hasOne(WorkClient::class, 'external_userid', 'external_userid')
- ->field(['external_userid', 'name'])
- ->bind(['name' => 'name']);
- }
- public function chat()
- {
- return $this->hasOne(WorkGroupChat::class,'chat_id','chat_id');
- }
-
- public function searchMsgIdAttr($query, $value)
- {
- if (is_array($value)) {
- $query->whereIn('msg_id', $value);
- } else {
- $query->where('msg_id', $value);
- }
- }
-
- public function searchStatusAttr($query, $value)
- {
- if ('' !== $value) {
- if (is_array($value)) {
- $query->whereIn('status', $value);
- } else {
- $query->where('status', $value);
- }
- }
- }
-
- public function getSendTimeAttr($value)
- {
- return $value ? date('Y-m-d H:i:s', $value) : '';
- }
- }
|