1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.java110.api.bmo.fee.impl;
|
|
| import com.java110.api.bmo.ApiBaseBMO;
| import com.java110.api.bmo.IApiBaseBMO;
| import org.springframework.stereotype.Service;
|
| /**
| * @ClassName FeeBMOImpl
| * @Description TODO
| * @Author wuxw
| * @Date 2020/3/9 22:24
| * @Version 1.0
| * add by wuxw 2020/3/9
| **/
| @Service("feeBMOImpl")
| public class FeeBMOImpl extends ApiBaseBMO implements IApiBaseBMO {
| }
|
|