123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * Created by PhpStorm.
- * User: 思维定制
- * Date: 2019/1/19
- * Time: 16:30
- */
- namespace App\Models;
- class CustomerCatRecordModel extends BaseModel
- {
- protected $table = 'customer_cat_record';
- /**
- 主键
- */
- protected $primaryKey = 'id';
- //分页
- protected $perPage = PAGE_NUMS;
- /**
- * 可以被集体附值的表的字段
- *
- * @var string
- */
- protected $fillable = [
- 'agent_id',
- 'store_id',
- 'open_id',
- 'cat_id',
- 'parent_id',
- ];
- }
|