CheckRuleItemService.java 431 B

1234567891011121314151617181920212223
  1. package com.xintong.visualinspection.service;
  2. import java.util.List;
  3. import com.xintong.visualinspection.bean.CheckItem;
  4. /**
  5. *
  6. *
  7. * ConstantService
  8. *
  9. * tiger
  10. * tiger
  11. * 2017年5月4日 上午10:41:40
  12. *
  13. * @version 1.0.0
  14. *
  15. */
  16. public interface CheckRuleItemService {
  17. public String insert(CheckItem checkItem);
  18. public void delete(CheckItem checkItem);
  19. public String insertList(List<CheckItem> checkItems);
  20. }