You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
612 B
24 lines
612 B
![]()
6 months ago
|
package com.ruoyi.tc.mapper;
|
||
|
|
||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
import com.ruoyi.tc.entity.response.UnitOtherConcatCpResponse;
|
||
|
import org.apache.ibatis.annotations.Select;
|
||
|
|
||
|
/**
|
||
|
* 单位其他联系人复制(unit_other_contact_cp)数据层
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
*/
|
||
|
public interface UnitOtherConcatCpMapper extends BaseMapper<UnitOtherConcatCpResponse> {
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 根据资产id资产供应链原有id
|
||
|
*
|
||
|
* @param assetId 资产id
|
||
|
* @return
|
||
|
*/
|
||
|
@Select("select id from unit_other_contact_cp where asset_id =#{assetId}")
|
||
|
int findByassetId(Integer assetId);
|
||
|
}
|