16 lines
336 B
Java
16 lines
336 B
Java
package tech.riemann.ims.mapper.material;
|
|
|
|
import tech.riemann.ims.entity.material.StocktakingAudit;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
/**
|
|
* 盘点审核表 Mapper 接口
|
|
*
|
|
* @author mayong)
|
|
*
|
|
* @since 2024-12-06 10:32:29
|
|
*/
|
|
public interface StocktakingAuditMapper extends BaseMapper<StocktakingAudit> {
|
|
|
|
}
|