You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
515 B
27 lines
515 B
3 months ago
|
<?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;
|
||
|
}
|