FollowUpRecordFile.php 369 B

1234567891011121314151617
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. class FollowUpRecordFile extends Model
  5. {
  6. protected $table = "follow_up_record_file"; //指定表
  7. const CREATED_AT = 'crt_time';
  8. const UPDATED_AT = 'upd_time';
  9. protected $dateFormat = 'U';
  10. const type_one = 1; // 图片
  11. public static $type = [
  12. self::type_one,
  13. ];
  14. }