NoteLog.php 709 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace app\bug\model;
  3. class NoteLog extends Base
  4. {
  5. //设置字段信息
  6. protected $schema = [
  7. 'id' =>'int',//
  8. 'bugNo' =>'varchar',//编号
  9. 'type' =>'int',//操作类型
  10. 'action_uid' =>'int',//操作人id
  11. 'action_name' =>'varchar',//操作人名称
  12. 'handle_name' =>'varchar',//操作字段
  13. 'action_item' =>'text',//操作前值
  14. 'action_after' =>'text',//操作后值
  15. 'addtime' =>'datetime',//操作时间
  16. ];
  17. protected $createTime='addtime';
  18. public function NoteInfo(){
  19. return $this->belongsTo('Note','bugNo','bugNo')->bind(["company_type"]);
  20. }
  21. }