15 lines
425 B
Java
15 lines
425 B
Java
|
|
package com.klp.erp.mapper;
|
||
|
|
|
||
|
|
import com.klp.common.core.mapper.BaseMapperPlus;
|
||
|
|
import com.klp.erp.domain.ErpPurchasePlanAuditLog;
|
||
|
|
import com.klp.erp.domain.vo.ErpPurchasePlanAuditLogVo;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 采购计划审核日志 Mapper
|
||
|
|
*
|
||
|
|
* @author klp
|
||
|
|
* @date 2026-06-25
|
||
|
|
*/
|
||
|
|
public interface ErpPurchasePlanAuditLogMapper extends BaseMapperPlus<ErpPurchasePlanAuditLogMapper, ErpPurchasePlanAuditLog, ErpPurchasePlanAuditLogVo> {
|
||
|
|
}
|