ExpertPublishPageService.java 470 B

123456789101112131415161718192021222324
  1. package com.goafanti.user.service;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import org.springframework.stereotype.Service;
  5. import com.goafanti.common.bo.PublishPageBo;
  6. @Service
  7. public class ExpertPublishPageService {
  8. public static List<PublishPageBo> getBranchInformation(){
  9. List<PublishPageBo> l=new ArrayList<>();
  10. l.add(new PublishPageBo("W01","主页"));
  11. l.add(new PublishPageBo("W02","智者 "));
  12. return l;
  13. }
  14. }