You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
296 B
16 lines
296 B
<?php
|
|
|
|
namespace App\Model\v3;
|
|
|
|
use App\Model\Model;
|
|
|
|
class SpeakerDevic extends Model
|
|
{
|
|
const IS_BIND_YES = 1;
|
|
const IS_BIND_NO = 0;
|
|
|
|
protected $table = 'lanzu_service_speakers';
|
|
|
|
protected $fillable = ['store_id', 'device_name', 'state', 'market_id', 'bind_time', 'is_bind'];
|
|
|
|
}
|