2023-01-29 10:26:52 +08:00

26 lines
1.2 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace app\common\model;
/**
* 分类模型
*/
class Ad extends Base{
protected $auto = array('update_time');
protected $insert = array('create_time');
protected $type = array(
'id' => 'integer',
);
public $keyList = array(
array('name'=>'id', 'title'=>'ID', 'type'=>'hidden', 'help'=>'', 'option'=>''),
array('name'=>'place_id', 'title'=>'PLACE_ID', 'type'=>'hidden', 'help'=>'', 'option'=>''),
array('name'=>'title', 'title'=>'名称', 'type'=>'text', 'help'=>'', 'option'=>''),
array('name'=>'cover_id', 'title'=>'图片', 'type'=>'imageurl', 'help'=>'图片尺寸750px*350px手机、PC通用尺寸', 'option'=>''),
array('name'=>'url', 'title'=>'链接', 'type'=>'text', 'help'=>'<font size="" color="#f30"><strong>----请勿使用带有域名的链接</strong><br/>-------错误链接http://m.***.com/chapter/read/1159/453519<br/>-------正确链接式:/chapter/read/1159/453519</font>', 'option'=>''),
array('name'=>'content', 'title'=>'描述', 'type'=>'textarea', 'help'=>'', 'option'=>''),
array('name'=>'status', 'title'=>'状态', 'type'=>'select', 'help'=>'', 'option'=>array('1'=>'开启','0'=>'禁用')),
);
}