TableService.java 399 B

123456789101112131415161718
  1. package com.boman.system.common;
  2. import org.slf4j.Logger;
  3. import org.slf4j.LoggerFactory;
  4. /**
  5. * @author shiqian
  6. * @description
  7. * @date 2021年03月22日 10:13
  8. **/
  9. public interface TableService {
  10. Logger LOGGER = LoggerFactory.getLogger(TableService.class);
  11. void configure(TableServiceContext context);
  12. RowResult executeAction(TableServiceContext context, MainTableRecord row);
  13. }