1
2
3
4
5
6
7
8
9
10
11
12
13
| package project.c2c;
|
| public interface C2cUserParamBaseSetService {
|
| public void save(C2cUserParamBaseSet entity);
|
| public void update(C2cUserParamBaseSet entity);
|
| public void delete(String c2c_user_party_id);
|
| public C2cUserParamBaseSet getByPartyId(String c2c_user_party_id);
|
| }
|
|