Package service.impl

Source Code of service.impl.AServiceImpl

package service.impl;

import model.AOV;

import org.springframework.stereotype.Service;

import service.IAService;
@Service
public class AServiceImpl implements IAService {

  public void sayA() {
    System.out.println("this is A!!!!");

  }

  @Override
  public AOV getAOV() {
    return new AOV("哈哈");
  }

}
TOP

Related Classes of service.impl.AServiceImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.