添加“render_worker”相关CRUD代码

This commit is contained in:
longbinbin
2024-11-29 17:59:33 +08:00
parent 5c93a22f9b
commit 2040cf23a4
9 changed files with 418 additions and 0 deletions

View File

@ -0,0 +1,19 @@
package com.ycwl.basic.mapper.pc;
import com.ycwl.basic.model.pc.renderWorker.entity.RenderWorkerEntity;
import com.ycwl.basic.model.pc.renderWorker.req.RenderWorkerReqQuery;
import java.util.List;
/**
* @Authorlongbinbin
* @Date2024/11/29 17:22
*/
public interface RenderWorkerMapper {
List<RenderWorkerEntity> list(RenderWorkerReqQuery renderWorkerReqQuery);
RenderWorkerEntity getById(Long id);
int add(RenderWorkerEntity member);
int deleteById(Long id);
int update(RenderWorkerEntity member);
int updateStatus(Long id);
}