| 1234567891011121314151617 | <?phpnamespace App\Model;use Illuminate\Database\Eloquent\Model;class BookingListInfo extends Model{    protected $table = "booking_list_info"; //指定表    const CREATED_AT = 'crt_time';    const UPDATED_AT = 'upd_time';    protected $dateFormat = 'U';    const type_one = 1; // 文件    public static $type = [        self::type_one,    ];}
 |