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/AssetSupplyChainCpMapper.java

28 lines
662 B

package com.ruoyi.tc.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.tc.entity.response.AssetSupplyChainCpResponse;
import org.apache.ibatis.annotations.Select;
/**
* (asset_supply_chain_cp)访
*
* @author makejava
* @since 2024-11-15 10:03:56
*/
public interface AssetSupplyChainCpMapper extends BaseMapper<AssetSupplyChainCpResponse> {
/**
* idid
*
* @param assetId id
* @return
*/
@Select("select id from asset_supply_chain_cp where asset_id=#{assetId}")
int findByassetId(Integer assetId);
}