Commit d03170e7 authored by lisong's avatar lisong

添加长期有效字段

parent 710e493f
......@@ -95,6 +95,9 @@ public class HouseholdPvDto extends BaseDto {
@ApiModelProperty(value = "创建时间")
private Date createTime;
@ApiModelProperty(value = "是否长期有效(1 是 0 否)")
private String isPermanently;
/** 合同信息 */
private HouseholdPvContactDto contactInfo;
/** 租赁物信息 */
......
......@@ -147,4 +147,10 @@ public class HouseholdPv extends BaseEntity {
@TableField("create_time")
private Date createTime;
/**
* 是否长期有效(1 是 0 否, int类型组件回显不了)
*/
@TableField("is_permanently")
private String isPermanently;
}
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