Commit 9bb63827 authored by 徐俊's avatar 徐俊

xujun

parent 2b2a4a1e
package com.yiboshi.science.entity;
import com.yiboshi.science.base.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "项目绩效指标表VO")
public class ComProjectKpitDetail extends BaseEntity {
/** kpitId */
@ApiModelProperty(value = "kpitId", position = 8)
@Length(max=36, message = "kpitId不能大于36")
private String kpitId;
/** 绩效类型名称 */
@ApiModelProperty(value = "绩效类型名称", position = 1 )
@Length(max=200, message = "绩效类型名称不能大于200")
private String kpitName;
/** 项目Id */
@ApiModelProperty(value = "项目Id", position = 8)
@Length(max=36, message = "项目Id不能大于36")
private String objectId;
/** 一级指标名称 */
@ApiModelProperty(value = "一级指标名称", position = 1 )
@Length(max=40, message = "一级指标名称不能大于40")
private String oneLevelName;
/** 二级指标名称 */
@ApiModelProperty(value = "二级指标名称", position = 1 )
@Length(max=40, message = "二级指标名称不能大于40")
private String towLevelName;
/** 指标值 */
@ApiModelProperty(value = "指标值", position = 7)
private Integer targetValue;
/** 绩效标准 */
@ApiModelProperty(value = "绩效标准", position = 7)
private Integer performanceStandard;
/** 年度1指标 */
@ApiModelProperty(value = "年度1指标", position = 7)
private Integer yearValue1;
/** 年度2指标 */
@ApiModelProperty(value = "年度2指标", position = 7)
private Integer yearValue2;
/** 年度3指标 */
@ApiModelProperty(value = "年度3指标", position = 7)
private Integer yearValue3;
/** 一级指标显示 */
@ApiModelProperty(value = "一级指标显示", position = 7)
private boolean oneDisplay;
/** 二级指标显示 */
@ApiModelProperty(value = "二级指标显示", position = 7)
private boolean towDisplay;
/** 一级指标行合并数 */
@ApiModelProperty(value = "一级指标行合并数", position = 7)
private Integer oneRowSpan;
/** 二级指标行合并数 */
@ApiModelProperty(value = "二级指标行合并数", position = 7)
private Integer towRowSpan;
}
package com.yiboshi.science.param.dto;
import com.yiboshi.science.base.BaseDTO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "项目绩效指标表DTO")
public class ComProjectKpitDetailDTO extends BaseDTO {
/** kpitId */
@ApiModelProperty(value = "kpitId", position = 8)
@Length(max=36, message = "kpitId不能大于36")
private String kpitId;
/** 绩效类型名称 */
@ApiModelProperty(value = "绩效类型名称", position = 1 )
@Length(max=200, message = "绩效类型名称不能大于200")
private String kpitName;
/** 项目Id */
@ApiModelProperty(value = "项目Id", position = 8)
@Length(max=36, message = "项目Id不能大于36")
private String objectId;
/** 一级指标名称 */
@ApiModelProperty(value = "一级指标名称", position = 1 )
@Length(max=40, message = "一级指标名称不能大于40")
private String oneLevelName;
/** 二级指标名称 */
@ApiModelProperty(value = "二级指标名称", position = 1 )
@Length(max=40, message = "二级指标名称不能大于40")
private String towLevelName;
/** 指标值 */
@ApiModelProperty(value = "指标值", position = 7)
private Integer targetValue;
/** 绩效标准 */
@ApiModelProperty(value = "绩效标准", position = 7)
private Integer performanceStandard;
/** 年度1指标 */
@ApiModelProperty(value = "年度1指标", position = 7)
private Integer yearValue1;
/** 年度2指标 */
@ApiModelProperty(value = "年度2指标", position = 7)
private Integer yearValue2;
/** 年度3指标 */
@ApiModelProperty(value = "年度3指标", position = 7)
private Integer yearValue3;
/** 一级指标显示 */
@ApiModelProperty(value = "一级指标显示", position = 7)
private boolean oneDisplay;
/** 二级指标显示 */
@ApiModelProperty(value = "二级指标显示", position = 7)
private boolean towDisplay;
/** 一级指标行合并数 */
@ApiModelProperty(value = "一级指标行合并数", position = 7)
private Integer oneRowSpan;
/** 二级指标行合并数 */
@ApiModelProperty(value = "二级指标行合并数", position = 7)
private Integer towRowSpan;
}
package com.yiboshi.science.param.query;
import com.yiboshi.science.base.PaginationVO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "查询项目绩效指标表VO")
public class ComProjectKpitDetailQueryVO extends PaginationVO {
/** kpitId */
@ApiModelProperty(value = "kpitId", position = 8)
@Length(max=36, message = "kpitId不能大于36")
private String kpitId;
/** 绩效类型名称 */
@ApiModelProperty(value = "绩效类型名称", position = 1 )
@Length(max=200, message = "绩效类型名称不能大于200")
private String kpitName;
/** 项目Id */
@ApiModelProperty(value = "项目Id", position = 8)
@Length(max=36, message = "项目Id不能大于36")
private String objectId;
/** 一级指标名称 */
@ApiModelProperty(value = "一级指标名称", position = 1 )
@Length(max=40, message = "一级指标名称不能大于40")
private String oneLevelName;
/** 二级指标名称 */
@ApiModelProperty(value = "二级指标名称", position = 1 )
@Length(max=40, message = "二级指标名称不能大于40")
private String towLevelName;
/** 指标值 */
@ApiModelProperty(value = "指标值", position = 7)
private Integer targetValue;
/** 绩效标准 */
@ApiModelProperty(value = "绩效标准", position = 7)
private Integer performanceStandard;
/** 年度1指标 */
@ApiModelProperty(value = "年度1指标", position = 7)
private Integer yearValue1;
/** 年度2指标 */
@ApiModelProperty(value = "年度2指标", position = 7)
private Integer yearValue2;
/** 年度3指标 */
@ApiModelProperty(value = "年度3指标", position = 7)
private Integer yearValue3;
/** 一级指标显示 */
@ApiModelProperty(value = "一级指标显示", position = 7)
private boolean oneDisplay;
/** 二级指标显示 */
@ApiModelProperty(value = "二级指标显示", position = 7)
private boolean towDisplay;
/** 一级指标行合并数 */
@ApiModelProperty(value = "一级指标行合并数", position = 7)
private Integer oneRowSpan;
/** 二级指标行合并数 */
@ApiModelProperty(value = "二级指标行合并数", position = 7)
private Integer towRowSpan;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment