diff --git a/mallinkAdmin/src/main/resources/db/migration/V201906171731__ALTER_PROPERTY_CONTRACT.sql b/mallinkAdmin/src/main/resources/db/migration/V201906171731__ALTER_PROPERTY_CONTRACT.sql new file mode 100644 index 000000000..6f87764d3 --- /dev/null +++ b/mallinkAdmin/src/main/resources/db/migration/V201906171731__ALTER_PROPERTY_CONTRACT.sql @@ -0,0 +1,3 @@ +alter table wx_property_contract +add column rent_input_way smallint(2) DEFAULT 1 comment '租金录入方式1合铺录入2分铺录入', +add column adjust_ratio_way smallint(2) DEFAULT 1 comment '年租金调整方式1按比例2按金额'; diff --git a/mallinkService/src/main/java/com/iformall/domain/po/WxPropertyContract.java b/mallinkService/src/main/java/com/iformall/domain/po/WxPropertyContract.java index 94b59ec05..7b39482d3 100644 --- a/mallinkService/src/main/java/com/iformall/domain/po/WxPropertyContract.java +++ b/mallinkService/src/main/java/com/iformall/domain/po/WxPropertyContract.java @@ -183,6 +183,12 @@ public class WxPropertyContract extends BaseEntity { @io.swagger.annotations.ApiModelProperty(value = "操作类型1区分租赁物业2合并租赁物业", name = "operationType") private Integer operationType; + @io.swagger.annotations.ApiModelProperty(value = "租金录入方式1合铺录入2分铺录入", name = "rent_input_way") + private Integer rentInputWay; + + @io.swagger.annotations.ApiModelProperty(value = "年租金调整方式1按比例2按金额", name = "adjust_ratio_way") + private Integer adjustRatioWay; + public static enum Field { Id_ASC("`id` ASC"),Id_DESC("`id` DESC")