Publish.php 834 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace catchAdmin\api\model;
  3. use catcher\base\CatchModel as Model;
  4. use catcher\traits\db\BaseOptionsTrait;
  5. use catcher\traits\db\ScopeTrait;
  6. class Publish extends Model
  7. {
  8. use BaseOptionsTrait, ScopeTrait;
  9. // 表名
  10. public $name = 'publish';
  11. // 数据库字段映射
  12. public $field = array(
  13. 'id',
  14. // 类型 add|update|delete
  15. 'Type',
  16. // 数据类型
  17. 'ContentType',
  18. // 内容 json
  19. 'Content',
  20. // 网关imei
  21. 'Imei',
  22. // 内容id
  23. 'ContentId',
  24. // 添加时间
  25. 'AddTime',
  26. // 毫秒时间戳
  27. 'Version',
  28. // 1 更新 2 只读
  29. 'Status',
  30. );
  31. /**
  32. * @Descripttion: 添加记录
  33. * @name: likang
  34. * @return {*}
  35. */
  36. public function add($type)
  37. {
  38. }
  39. }