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.
19 lines
355 B
19 lines
355 B
<?php
|
|
/**
|
|
* 活动模型
|
|
*
|
|
* @author qifan
|
|
* @date 2020-12-09
|
|
*/
|
|
|
|
namespace app\crm\model;
|
|
|
|
use app\admin\model\Common;
|
|
|
|
class Activity extends Common
|
|
{
|
|
protected $name = 'crm_activity';
|
|
protected $createTime = 'create_time';
|
|
protected $updateTime = 'update_time';
|
|
protected $autoWriteTimestamp = true;
|
|
} |