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