- package com.poteviohealth.cgp.statistics.service;
- import com.poteviohealth.cgp.common.service.IBaseService;
- import com.poteviohealth.cgp.statistics.model.Distinction;
- import java.io.InputStream;
- /**
- * 图片处理
- * @author Qin
- */
- public interface IDistinctionService extends IBaseService<Distinction> {
- Long checkImg(InputStream inputStream);
- }
|