Files
FrameTour-BE/src/main/java/com/ycwl/basic/mapper/RenderWorkerMapper.java
longbinbin b544639b11 修改mapper文件路径
添加“MessageRecordMapper”
2024-12-13 11:35:42 +08:00

25 lines
706 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.ycwl.basic.mapper;
import com.ycwl.basic.model.pc.renderWorker.entity.RenderWorkerEntity;
import com.ycwl.basic.model.pc.renderWorker.req.RenderWorkerReqQuery;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* @Authorlongbinbin
* @Date2024/11/29 17:22
* 渲染机管理表
*/
@Mapper
public interface RenderWorkerMapper {
List<RenderWorkerEntity> list(RenderWorkerReqQuery renderWorkerReqQuery);
RenderWorkerEntity getById(Long id);
int add(RenderWorkerEntity renderWorker);
int deleteById(Long id);
int update(RenderWorkerEntity renderWorker);
int updateStatus(Long id);
RenderWorkerEntity findByAccessKey(String accessKey);
}