123456789101112131415161718 |
- package com.boman.system.common;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- /**
- * @author shiqian
- * @description
- * @date 2021年03月22日 10:13
- **/
- public interface TableService {
- Logger LOGGER = LoggerFactory.getLogger(TableService.class);
- void configure(TableServiceContext context);
- RowResult executeAction(TableServiceContext context, MainTableRecord row);
- }
|