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.
TcAssetVerificationJava/ruoyi-admin/src/main/java/com/ruoyi/tc/mapper/UnitOtherConcatCpMapper.java

24 lines
612 B

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> {
/**
* idid
*
* @param assetId id
* @return
*/
@Select("select id from unit_other_contact_cp where asset_id =#{assetId}")
int findByassetId(Integer assetId);
}