123456789101112131415161718192021 |
- package com.zjt.mapper;
- import com.zjt.entity.ProductionVarietyDetail;
- import com.zjt.entity.Productionheader;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import java.util.List;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author xxu
- * @since 2025-09-25
- */
- public interface ProductionheaderMapper extends BaseMapper<Productionheader> {
- List<Productionheader> selectProductionheader(long varietyDetailId);
- }
|