guoshilong
2023-05-18 6cd2da8eb7d7aefecd96a19ebbfe9caba59ea88c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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);
}