java110
2022-06-28 22e8a676ee42c0d78b3526bcd9a635abbe8dca03
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.java110.api.bmo.area.impl;
 
import com.java110.api.bmo.ApiBaseBMO;
import com.java110.api.bmo.area.IAreaBMO;
import org.springframework.stereotype.Service;
 
/**
 * @ClassName AreaBMOImpl
 * @Description TODO
 * @Author wuxw
 * @Date 2020/3/9 20:46
 * @Version 1.0
 * add by wuxw 2020/3/9
 **/
@Service("areaBMOImpl")
public class AreaBMOImpl extends ApiBaseBMO implements IAreaBMO {
}