package com.home.xining.service.idel;
|
|
import com.product.core.entity.DataTableEntity;
|
import com.product.core.entity.FieldSetEntity;
|
import com.product.core.exception.BaseException;
|
|
import java.text.ParseException;
|
|
/**
|
* @ClassName: IAdvanceNoticeService
|
* @Author: luoxin
|
* @Date: 2022/1/11 12:16
|
* @Description: 行政处罚事先告知书接口
|
*/
|
public interface IAdvanceNoticeService {
|
|
DataTableEntity listAdvanceNoticeg(FieldSetEntity fs);
|
|
FieldSetEntity getAdvanceNotice(FieldSetEntity fs);
|
|
String saveAdvanceNotice(FieldSetEntity fs) throws BaseException;
|
|
String deleteAdvanceNotice(FieldSetEntity fs) throws BaseException;
|
|
void addTypeSize(FieldSetEntity fs) throws BaseException;
|
|
}
|