SmsTemplate.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\sms\model;
  12. use catchAdmin\sms\model\search\SmsTemplateSearch;
  13. use catcher\base\CatchModel as Model;
  14. class SmsTemplate extends Model
  15. {
  16. use SmsTemplateSearch;
  17. protected $name = 'sms_template';
  18. protected $field = [
  19. 'id', //
  20. 'operator', // 运营商
  21. 'name', // 模版名称
  22. 'identify', // 模版标识
  23. 'code', // 模版CODE
  24. 'content', // 模版内容
  25. 'creator_id', // 创建人ID
  26. 'created_at', // 创建时间
  27. 'updated_at', // 更新时间
  28. 'deleted_at', // 软删除
  29. ];
  30. protected $paginate = false;
  31. }