|
@@ -15,6 +15,7 @@ import java.util.Map;
|
|
@Repository
|
|
@Repository
|
|
public interface OutUserMapper extends BaseMapper<OutUser> {
|
|
public interface OutUserMapper extends BaseMapper<OutUser> {
|
|
|
|
|
|
|
|
+
|
|
@Select("SELECT * FROM out_user WHERE name = #{name} and phone = #{phone} and start_date <= curdate() and end_date >= curdate()")
|
|
@Select("SELECT * FROM out_user WHERE name = #{name} and phone = #{phone} and start_date <= curdate() and end_date >= curdate()")
|
|
OutUser getOutUserByPhone(@Param("name") String name, @Param("phone") Long phone);
|
|
OutUser getOutUserByPhone(@Param("name") String name, @Param("phone") Long phone);
|
|
|
|
|