package cn.timer.api.dao.zcgl;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;

import cn.timer.api.bean.zcgl.ZcglAssoZcgx;
import cn.timer.api.config.annotation.CurrentUser;

/**
*  资产关系表
* @author dsc 2019-11-26
*/
@Repository
public interface ZcglAssoZcgxMapper extends BaseMapper<ZcglAssoZcgx> {
	
	/**
	  * 删除类别名称(按上级id)
	  * @param orgCode
	  * @param id
	  * @return
	  */
	 Integer deleteUpid(@CurrentUser@Param(value = "orgCode") Integer orgCode,@Param(value = "id") Integer id);
	
}