后台服务
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.

12 line
303 B

  1. package com.iformall.mapper;
  2. import com.iformall.common.CommonMapper;
  3. import com.iformall.domain.po.WxCUserBasicInfo;
  4. public interface WxCLiveUserBasicInfoMapper extends CommonMapper<WxCUserBasicInfo, String> {
  5. WxCUserBasicInfo selectById(Long id);
  6. void updateCode(Long id, String mcode);
  7. }