zhangherong
2025-07-03 1b5a723592ea63e5eec0bdeef7855b9c40e9df71
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);
}