BatchDictMapper.java 351 Bytes
package com.meishu.mapper;

import com.meishu.model.BatchDictDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;

/**
 * <p>
 * 批次字典表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2023-07-12
 */
 @Repository
public interface BatchDictMapper extends BaseMapper<BatchDictDO> {

}