zhangherong
2025-07-11 44a7e1614ac9894d65ff1159fd7d7747b0f19922
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.jeecg.modules.eam.service;
 
import org.jeecg.modules.eam.entity.EamEquipmentPurchasePlan;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * @Description: eam_equipment_purchase_plan
 * @Author: jeecg-boot
 * @Date:   2025-06-18
 * @Version: V1.0
 */
public interface IEamEquipmentPurchasePlanService extends IService<EamEquipmentPurchasePlan> {
 
    void savePurchasePlan(EamEquipmentPurchasePlan eamEquipmentPurchasePlan);
}