26 lines
1.2 KiB
PHP
26 lines
1.2 KiB
PHP
<?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'=>'禁用')),
|
||
);
|
||
}
|