package com.xzx.gc.user.mapper;
|
|
import com.xzx.gc.entity.PlatformAccountInfo;
|
import com.xzx.gc.util.GcMapper;
|
|
public interface PlatformAccountInfoMapper extends GcMapper<PlatformAccountInfo> {
|
|
String queryAccountByAdminId();
|
|
int updatePlatformMoney(String money);
|
|
int updatePlatformHbb(String hbb);
|
}
|