后台服务
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
213 B

  1. package com.iformall.service;
  2. import com.iformall.domain.po.WxCUserBasicInfo;
  3. public interface WxCLiveUserBasicInfoService {
  4. WxCUserBasicInfo getById(Long id);
  5. void updateCode(Long id, String code);
  6. }