luohairen
2024-12-31 0c35c75ada3bb2a0a4d2843d20445af524f0e357
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ycl.domain.query;
 
import com.ycl.system.domain.base.AbsQuery;
import java.util.List;
import org.springframework.lang.NonNull;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 投资项目基础信息表查询
 *
 * @author flq
 * @since 2024-11-27
 */
@Data
@ApiModel(value = "ProjectInvestmentInfo查询参数", description = "投资项目基础信息表查询参数")
public class ProjectInvestmentInfoQuery extends AbsQuery {
}