|
@@ -1,6 +1,10 @@
|
|
|
package com.tuoren.forward.mapper;
|
|
package com.tuoren.forward.mapper;
|
|
|
|
|
|
|
|
import com.tuoren.forward.entity.RegistLog;
|
|
import com.tuoren.forward.entity.RegistLog;
|
|
|
|
|
+import com.tuoren.forward.entity.dto.RegistLogDto;
|
|
|
|
|
+import com.tuoren.forward.entity.req.RegistLogSearchReq;
|
|
|
|
|
+
|
|
|
|
|
+import java.util.List;
|
|
|
|
|
|
|
|
public interface RegistLogMapper {
|
|
public interface RegistLogMapper {
|
|
|
int deleteByPrimaryKey(String id);
|
|
int deleteByPrimaryKey(String id);
|
|
@@ -14,4 +18,8 @@ public interface RegistLogMapper {
|
|
|
int updateByPrimaryKeySelective(RegistLog row);
|
|
int updateByPrimaryKeySelective(RegistLog row);
|
|
|
|
|
|
|
|
int updateByPrimaryKey(RegistLog row);
|
|
int updateByPrimaryKey(RegistLog row);
|
|
|
|
|
+
|
|
|
|
|
+ List<RegistLog> QueryCondition(RegistLogSearchReq req);
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
}
|
|
}
|