增加日期查询
This commit is contained in:
@ -8,6 +8,9 @@ import io.swagger.v3.oas.annotations.Hidden;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
import lombok.experimental.Accessors;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.time.LocalDate;
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@ -22,4 +25,8 @@ public class WgzAppGetMessageListReq extends PageReq {
|
||||
|
||||
@ApiModelProperty("字典(message_small_type)largeType为3填写")
|
||||
private String smallType;
|
||||
|
||||
@ApiModelProperty(value = "日期(格式:年-月-日),不填查全部")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||
private LocalDate rq;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user