18 lines
313 B
PHP
18 lines
313 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: lock
|
|
* Date: 2020/11/16
|
|
* Time: 2:06 PM
|
|
*/
|
|
|
|
namespace app\index\model;
|
|
|
|
|
|
class FollowAccount extends Common
|
|
{
|
|
const AUTO_ID = 'id';
|
|
const USER_ID = 'user_id';
|
|
const WECHART_ACCOUNT_ID = 'wechat_account_id';
|
|
const SYS_CREATE_TIME = 'sys_create_time';
|
|
} |