zhongrj
2023-07-06 3ce737b52fca082ac3a2ecda4a848e2e4abcd0ee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
    Integer addattResStagChar(@Param("attResStagChar") AttResStagChar attResStagChar);
}