com.nxyfan.framework.survey.param.SurveyPageParam Maven / Gradle / Ivy
The newest version!
package com.nxyfan.framework.survey.param;
import com.nxyfan.framework.common.page.CommonPageParam;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
/**
*
* Describe: 调查问卷分页查询参数
* Author: caoyang
* Create Time: 2022年12月8日 下午2:52:45
* Copyright @ 2022 51LIFE
*/
@Getter
@Setter
public class SurveyPageParam extends CommonPageParam {
@ApiModelProperty("调查问卷名称或标题")
private String surveyName;
@ApiModelProperty("医院主键")
private String hospitalFlow;
}