| 123456789101112131415161718 |
- package com.ktg.iscs.mapper;
- import java.util.List;
- import org.apache.ibatis.annotations.Mapper;
- import com.ktg.common.mapper.BaseMapperX;
- import com.ktg.iscs.domain.IsMaterialsProperty;
- /**
- * 物资属性项Mapper接口
- *
- * @author cgj
- * @date 2025-02-05
- */
- @Mapper
- public interface IsMaterialsPropertyMapper extends BaseMapperX<IsMaterialsProperty> {
- }
|