java110
2020-03-10 6c017505f741d69c15361cc583611fc960a75779
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.java110.api.bmo.visit.impl;
 
import com.java110.api.bmo.ApiBaseBMO;
import com.java110.api.bmo.visit.IVisitBMO;
import org.springframework.stereotype.Service;
 
/**
 * @ClassName VisitBMOImpl
 * @Description TODO
 * @Author wuxw
 * @Date 2020/3/10 0:06
 * @Version 1.0
 * add by wuxw 2020/3/10
 **/
@Service("visitBMOImpl")
public class VisitBMOImpl extends ApiBaseBMO implements IVisitBMO {
}