admin
2019-08-30 b54f7562f6e86bc6295d5029f8b990d807e1971d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.yeshi.fanli.dao.mybatis.goods;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.goods.ShareGoodsTextTemplate;
 
public interface ShareGoodsTextTemplateMapper extends BaseMapper<ShareGoodsTextTemplate> {
    
    /**
     * 根据用户查询
     * @param uid
     * @return
     */
    ShareGoodsTextTemplate selectByUid(Long uid);
 
}