27 lines
515 B
27 lines
515 B
<?php
|
|
|
|
namespace app\model;
|
|
|
|
/**
|
|
* 落地页
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property string $content
|
|
* @property int $click_num
|
|
* @property string $link_url
|
|
* @property int $is_delete
|
|
* @property int $status
|
|
* @property int $create_time
|
|
* @property int $update_time
|
|
*/
|
|
class LandingPageModel extends BaseModel
|
|
{
|
|
protected $name = 'landing_page';
|
|
protected $pk = 'id';
|
|
|
|
const IS_DELETE_NO = 1;
|
|
const IS_DELETE_YES = 2;
|
|
|
|
const STATUS_ON = 1;
|
|
const STATUS_OFF = 2;
|
|
}
|