You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
542 B

package top.beansprout.health.model.dto;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import lombok.Getter;
import lombok.Setter;
/**
* <p>Title: BodyInfoQuery</p>
* <p>Description: 身体信息查询</p>
*
* @author cyy
* @date 2020年4月27日
*/
@Setter
@Getter
public class BodyInfoQuery extends PageDto {
private static final long serialVersionUID = 1L;
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date minDate;
@DateTimeFormat(pattern = "yyyy-MM-dd")
private Date maxDate;
}