1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace app\common\model;
- use think\Model;
- class Param extends Model
- {
- // 设置字段信息
- protected $schema = [
- 'id' => 'int',
- 'indextopbg' => 'string',
- 'telephone' => 'string',
- 'mycodeban' => 'string',
- 'mycodecolor' => 'string',
- 'mycodetil' => 'string',
- 'mycodepic' => 'string',
- 'brokerformpic' => 'string',
- 'agentformpic' => 'string',
- 'workerformpic' => 'string',
- 'addcomjobs' => 'int',
- 'addcomjobswyp' => 'int',
- 'topcomjobs' => 'int',
- 'adddemand' => 'int',
- 'adddemandwyd' => 'int',
- 'topdemand' => 'int',
- 'addsupply' => 'int',
- 'topsupply' => 'int',
- 'teldemand' => 'int',
- 'telsupply' => 'int',
- 'mpaccount' => 'string',
- 'defviewtol' => 'int',
- 'comjobs_commission' => 'float',
- 'agent_commission' => 'float',
- ];
- }
|