|
@@ -2,6 +2,8 @@ package org.springblade.control.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
+import com.fasterxml.jackson.databind.ser.std.NullSerializer;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
@@ -33,21 +35,26 @@ public class ProjectCostBudget extends BaseEntity {
|
|
private Long deptId;
|
|
private Long deptId;
|
|
|
|
|
|
@ApiModelProperty(value = "费用类型")
|
|
@ApiModelProperty(value = "费用类型")
|
|
|
|
+ @JsonSerialize(nullsUsing = NullSerializer.class)
|
|
private Integer costType;
|
|
private Integer costType;
|
|
|
|
|
|
@ApiModelProperty(value = "项目环节")
|
|
@ApiModelProperty(value = "项目环节")
|
|
|
|
+ @JsonSerialize(nullsUsing = NullSerializer.class)
|
|
private Long projectProcess;
|
|
private Long projectProcess;
|
|
|
|
|
|
@ApiModelProperty(value = "预算类型")
|
|
@ApiModelProperty(value = "预算类型")
|
|
|
|
+ @JsonSerialize(nullsUsing = NullSerializer.class)
|
|
private Integer budgetType;
|
|
private Integer budgetType;
|
|
|
|
|
|
@ApiModelProperty(value = "任务类型")
|
|
@ApiModelProperty(value = "任务类型")
|
|
|
|
+ @JsonSerialize(nullsUsing = NullSerializer.class)
|
|
private Integer taskDetail;
|
|
private Integer taskDetail;
|
|
|
|
|
|
@ApiModelProperty(value = "预计天数")
|
|
@ApiModelProperty(value = "预计天数")
|
|
private BigDecimal budgetDays;
|
|
private BigDecimal budgetDays;
|
|
|
|
|
|
@ApiModelProperty(value = "岗位类型")
|
|
@ApiModelProperty(value = "岗位类型")
|
|
|
|
+ @JsonSerialize(nullsUsing = NullSerializer.class)
|
|
private Integer postType;
|
|
private Integer postType;
|
|
|
|
|
|
@ApiModelProperty(value = "投入人员数量")
|
|
@ApiModelProperty(value = "投入人员数量")
|