add bind dep and pos

This commit is contained in:
Chuck1sn
2025-06-03 18:05:51 +08:00
parent 6113667359
commit dba64a38f2
3 changed files with 98 additions and 13 deletions

View File

@@ -1,5 +1,6 @@
package com.zl.mjga.dto.urp;
import java.time.LocalDateTime;
import lombok.*;
@AllArgsConstructor
@@ -7,4 +8,6 @@ import lombok.*;
@Data
public class UserQueryDto {
private String username;
private LocalDateTime starDate;
private LocalDateTime endDate;
}