package cn.gistack.sm.sjztmd.mapper;
|
|
import cn.gistack.sm.sjztmd.entity.AttResBase;
|
import cn.gistack.sm.sjztmd.entity.AttResStagChar;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
/**
|
* AttResStagCharMapper 接口
|
*
|
* @author Chill
|
*/
|
public interface AttResStagCharMapper extends BaseMapper<AttResStagChar> {
|
|
AttResStagChar getByResGuid(@Param("resGuid") String resGuid);
|
|
Integer customizeUpdateByGuid(@Param("attResStagChar") AttResStagChar attResStagChar);
|
}
|