|
<?php
|
|
|
|
|
|
|
|
namespace app\common\model\wechat;
|
|
|
|
use app\common\model\BaseModel;
|
|
|
|
class TemplateMessage extends BaseModel
|
|
{
|
|
|
|
public static function tablePk(): string
|
|
{
|
|
return 'template_id';
|
|
}
|
|
|
|
|
|
public static function tableName(): string
|
|
{
|
|
return 'template_message';
|
|
}
|
|
|
|
}
|