Commit 9e6c1185 authored by 李腾威's avatar 李腾威

维保合同实体类修改 添加备注字段

parent ed2fee74
...@@ -66,6 +66,9 @@ public class ContractDto extends BaseDto { ...@@ -66,6 +66,9 @@ public class ContractDto extends BaseDto {
@ApiModelProperty(value = "服务内容") @ApiModelProperty(value = "服务内容")
private String serviceContent; private String serviceContent;
@ApiModelProperty(value = "备注")
private String remark;
@ApiModelProperty(value = "合同附件") @ApiModelProperty(value = "合同附件")
private String contractAttachment; private String contractAttachment;
} }
...@@ -92,4 +92,9 @@ public class Contract extends BaseEntity { ...@@ -92,4 +92,9 @@ public class Contract extends BaseEntity {
*/ */
@TableField("service_content") @TableField("service_content")
private String serviceContent; private String serviceContent;
/**
* 备注
*/
@TableField("remark")
private String remark;
} }
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