Commit df482e74 authored by 刘林's avatar 刘林

fix(jg):设计年限添加字段

parent 1d20be79
...@@ -112,4 +112,10 @@ public class JgOverDesignServiceLifeDto extends BaseDto { ...@@ -112,4 +112,10 @@ public class JgOverDesignServiceLifeDto extends BaseDto {
private String unitCode; private String unitCode;
private String currentUserId; private String currentUserId;
@ApiModelProperty(value = "首次使用截止日期")
private String firstUseDeadline;
@ApiModelProperty(value = "延长使用截止日期")
private String extendUseDeadline;
} }
...@@ -177,4 +177,17 @@ public class JgOverDesignServiceLife extends BaseEntity { ...@@ -177,4 +177,17 @@ public class JgOverDesignServiceLife extends BaseEntity {
@TableField(exist = false) @TableField(exist = false)
private String equCategory; private String equCategory;
/**
* 首次使用截止日期
*/
@TableField("first_use_deadline")
private String firstUseDeadline;
/**
* 延长使用截止日期
*/
@TableField("extend_use_deadline")
private String extendUseDeadline;
} }
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