12345678910111213141516171819 |
- package com.usky.fire.service;
- import com.usky.fire.domain.DemNewLaw;
- import com.usky.common.mybatis.core.CrudService;
- import com.usky.fire.service.vo.AdLicenseStatisticVO;
- import java.util.List;
- /**
- * <p>
- * 法律文书记录表 服务类
- * </p>
- *
- * @author han
- * @since 2023-10-11
- */
- public interface DemNewLawService extends CrudService<DemNewLaw> {
- AdLicenseStatisticVO adLicenseStatistic();
- }
|