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.
31 lines
405 B
31 lines
405 B
/** |
|
* |
|
* //=={Table}==//.php |
|
* User: ChenLong |
|
* DateTime: //=={date}==// |
|
*/ |
|
|
|
|
|
namespace app\common\model; |
|
|
|
use think\Model; |
|
//=={use}==// |
|
|
|
/** |
|
* Class //=={Table}==// |
|
* @package app\common\model\//=={Table}==// |
|
* @author chenlong <vip_chenlong@163.com> |
|
*/ |
|
class //=={Table}==// extends Model |
|
{ |
|
use BaseModel; |
|
|
|
protected $schema = [ |
|
//=={schema}==// |
|
]; |
|
|
|
|
|
//=={attr}==// |
|
|
|
} |
|
|
|
|