| 1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * @package merchant
- *
- * @author Qinii
- * @day 2020-06-18
- *
- *
- */
- 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';
- }
- }
|