SendsmsLog.php 534 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * [WeEngine System] Copyright (c) 2014 WE7.CC
  4. * WeEngine is NOT a free software, it under the license terms, visited http://www.we7.cc/ for more details.
  5. */
  6. namespace We7\Table\Core;
  7. class SendsmsLog extends \We7Table {
  8. protected $tableName = 'core_sendsms_log';
  9. protected $primaryKey = 'id';
  10. protected $field = array(
  11. 'uniacid',
  12. 'mobile',
  13. 'content',
  14. 'result',
  15. 'createtime',
  16. );
  17. protected $default = array(
  18. 'uniacid' => 0,
  19. 'mobile' => '',
  20. 'content' => '',
  21. 'result' => '',
  22. 'createtime' => 0,
  23. );
  24. }