jiangping
2024-01-22 ac1c48e5ae523ec6f62366542478bc5d451326a0
server/service/src/main/java/com/doumee/service/business/ApplyChangeService.java
@@ -2,13 +2,14 @@
import com.doumee.core.model.PageData;
import com.doumee.core.model.PageWrap;
import com.doumee.dao.business.dto.ApplyChangeOptDTO;
import com.doumee.dao.business.model.ApplyChange;
import java.util.List;
/**
 * 加减保换厂申请信息表Service定义
 * @author 江蹄蹄
 * @date 2024/01/15 15:07
 * @date 2024/01/16 10:03
 */
public interface ApplyChangeService {
@@ -19,7 +20,7 @@
     * @return Integer
     */
    Integer create(ApplyChange applyChange);
    Integer back(ApplyChange param);
    /**
     * 主键删除
     *
@@ -87,6 +88,9 @@
     */
    PageData<ApplyChange> findPage(PageWrap<ApplyChange> pageWrap);
    PageData<ApplyChange> findPageForCompany(PageWrap<ApplyChange> pageWrap);
    /**
     * 条件统计
     *
@@ -94,4 +98,8 @@
     * @return long
     */
    long count(ApplyChange applyChange);
    void changeOpt(ApplyChangeOptDTO applyChangeOptDTO);
    ApplyChange findDetail(Integer id);
}