zyy
2025-11-18 eeef63d31f05d894c8adbeb0242a8144e6de2b83
1
2
3
4
5
6
7
8
9
10
11
package com.yami.trading.service.c2c;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.yami.trading.bean.c2c.C2cUserParamBaseSet;
 
public interface  C2cUserParamBaseSetService    extends IService<C2cUserParamBaseSet> {
 
 
    public C2cUserParamBaseSet getByPartyId(String c2c_user_party_id);
 
}