package com.thhy.mobile.modules.biz.mouldcheck.mapper;
|
|
import com.thhy.mobile.modules.biz.mouldcheck.entity.ModCheckDto;
|
import com.thhy.mobile.modules.biz.mouldcheck.entity.MouldCheck;
|
import com.thhy.mobile.modules.biz.mouldcheck.entity.MouldCheckListVo;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Mapper 接口
|
* @author zhang_xiao_bo
|
* @since 2023-05-08 10:00:18
|
*/
|
@Component
|
public interface MouldCheckMapper {
|
|
|
MouldCheck queryById(Serializable modCheckId);
|
|
int countByMouldNum(String modId);
|
|
Integer queryVersionById(Serializable modCheckId);
|
|
List<MouldCheck> findList(MouldCheck mouldcheck);
|
|
List<MouldCheck> findAll();
|
|
void insert(MouldCheck mouldcheck);
|
|
void update(MouldCheck mouldcheck);
|
|
void deletelogic(Serializable modCheckId);
|
|
void deleteById(Serializable modCheckId);
|
|
void updateMatchStatus(MouldCheck mouldcheck);
|
|
List<MouldCheckListVo> ModCheckList(ModCheckDto modCheckDto);
|
}
|