package com.glxp.api.dao.thrsys; import com.glxp.api.dao.BaseMapperPlus; import com.glxp.api.dao.inout.IoOrderDetailBizDao; import com.glxp.api.entity.inout.IoOrderDetailBizEntity; import com.glxp.api.entity.thrsys.ThrInvOrderDetail; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface ThrInvOrderDetailMapper extends BaseMapperPlus { int deleteByPrimaryKey(Integer id); int insert(ThrInvOrderDetail record); int insertSelective(ThrInvOrderDetail record); ThrInvOrderDetail selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(ThrInvOrderDetail record); int updateByPrimaryKey(ThrInvOrderDetail record); }