WeixinDao.java 302 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 package com.cjs.cms.dao.user; import org.springframework.stereotype.Repository; import com.cjs.cms.model.user.WxUserInfo; /** * 微信绑定 * @author kongmingke * */ @Repository public interface WeixinDao { /**查询用户是否绑定微信*/ WxUserInfo queryByUserId(String userId); }