PullSICPDataService.java 241 B

1234567891011121314
  1. package com.cn.tianji.service;
  2. import java.util.List;
  3. public interface PullSICPDataService {
  4. void updateJh();
  5. void updTableByJhs(List<String> jhs);
  6. void pullData(List<String> jhs);
  7. void createTable(List<String> jhs);
  8. }