<?php

namespace catchAdmin\device\model;

use catcher\base\CatchModel as Model;

class StationPhoto extends Model
{
    // 表名
    public $name = 'station_photos';
    // 数据库字段映射
    public $field = array(
        'id',
        // 图片url
        'url',
        // 基站id
        'station_id',
        // 图片类型
        'type',
        // 创建人ID
        'creator_id',
        // 创建时间
        'created_at',
        // 更新时间
        'updated_at',
        // 软删除
        'deleted_at',
    );
}