| | |
| | | */ |
| | | package com.vci.ubcs.code.mapper; |
| | | |
| | | import com.vci.ubcs.code.entity.CodePhaseAttr; |
| | | import com.vci.ubcs.code.entity.CodePhaseattrEntity; |
| | | import com.vci.ubcs.code.vo.CodePhaseattrVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | |
| | | * @author yuxc |
| | | * @since 2023-04-20 |
| | | */ |
| | | public interface CodePhaseAttrMapper extends BaseMapper<CodePhaseAttr> { |
| | | public interface CodePhaseattrMapper extends BaseMapper<CodePhaseattrEntity> { |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | */ |
| | | List<CodePhaseattrVO> selectCodePhaseattrPage(IPage page, CodePhaseattrVO CodePhaseattr); |
| | | |
| | | List<CodePhaseAttr> selectByPhasea(String oid); |
| | | List<CodePhaseattrEntity> selectByPhasea(String oid); |
| | | |
| | | List<CodePhaseAttr> selectByPhaseaIds(String oids); |
| | | List<CodePhaseattrEntity> selectByPhaseaIds(String oids); |
| | | |
| | | List<CodePhaseAttr> listLinkAttrDOByTemplateAttrDOS(String id,String codeClassifyTemplateOid); |
| | | List<CodePhaseattrEntity> listLinkAttrDOByTemplateAttrDOS(String id, String codeClassifyTemplateOid); |
| | | } |