1234567891011121314151617 |
- package com.usky.fire.service;
- import com.usky.common.mybatis.core.CrudService;
- import com.usky.fire.domain.WaterAj;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author ya
- * @since 2021-11-05
- */
- public interface WaterAjService extends CrudService<WaterAj> {
- }
|