12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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'
- ];
-
- }
|