SendMessageMaterialLibrary.php 612 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. class SendMessageMaterialLibrary extends Model
  5. {
  6. // 表名
  7. protected $table = 'send_message_material_library';
  8. // 自动写入时间戳字段
  9. protected $autoWriteTimestamp = 'int';
  10. // 定义时间戳字段名
  11. protected $createTime = 'createtime';
  12. protected $updateTime = 'updatetime';
  13. // 追加属性
  14. protected $append = [
  15. 'send_time_text'
  16. ];
  17. public function getMessageTypeList()
  18. {
  19. return ['1' => __('文本类型'),'2' => __('图文类型'),'3' => __('图片消息')];
  20. }
  21. }