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.
15 lines
305 B
15 lines
305 B
5 years ago
|
package com.epmet.service;
|
||
|
|
||
|
import com.epmet.commons.mybatis.service.BaseService;
|
||
|
import com.epmet.entity.UserWechatEntity;
|
||
|
|
||
|
/**
|
||
|
* @Description
|
||
|
* @IntefaceName UserWechatService
|
||
|
* @Author wangc
|
||
|
* @date 2020.03.28 14:35
|
||
|
*/
|
||
|
public interface UserWechatService extends BaseService<UserWechatEntity> {
|
||
|
|
||
|
}
|