package com.ycl.domain.query;
|
|
import com.ycl.system.domain.base.AbsQuery;
|
import io.swagger.annotations.ApiModel;
|
import lombok.Data;
|
|
/**
|
* 项目计划表查询
|
*
|
* @author lhr
|
* @since 2024-11-22
|
*/
|
@Data
|
@ApiModel(value = "Plan查询参数", description = "项目计划表查询参数")
|
public class PlanQuery extends AbsQuery {
|
private String projectName;
|
private String projectCode;
|
private Integer reportStatus;
|
private Integer yearStatus;
|
private Integer seasonStatus;
|
private Integer monthStatus;
|
}
|