| 12345678910111213141516171819 |
- <?php
- namespace app\common\model;
- use think\Model;
- class AgentMarket extends Model
- {
- // 设置字段信息
- protected $schema = [
- 'id' => 'int',
- 'agent_id' => 'int',
- 'name' => 'string',
- 'mobile' => 'string',
- 'content' => 'string',
- 'is_bargain' => 'int',
- ];
- }
|