1234567891011121314151617 |
- <?php
- namespace app\common\model;
- use think\Model;
- class MemberWechatTpl extends Model{
-
- protected $pk = 'id';
-
- public static function getConfig(int $miniapp_id){
- return self::where(['member_miniapp_id' => $miniapp_id])->find();
- }
-
- }
|