IAjhPlanScheduleInfoService.java 359 字节
package com.skua.modules.ajh.service;

import com.skua.modules.ajh.entity.AjhPlanScheduleInfo;
import com.baomidou.mybatisplus.extension.service.IService;

/**
 * 经营方案审批父类
 */
public interface IAjhPlanScheduleInfoService extends IService<AjhPlanScheduleInfo> {

    AjhPlanScheduleInfo startProcess(AjhPlanScheduleInfo ajhPlanScheduleInfo);
}