Explorar el Código

[物业合同][修改][添加租金录入方式与年租金调整方式字段]

release_toaliyun_real
gongbiao hace 7 años
padre
commit
1d8dd90749
Se han modificado 2 ficheros con 9 adiciones y 0 borrados
  1. +3
    -0
      mallinkAdmin/src/main/resources/db/migration/V201906171731__ALTER_PROPERTY_CONTRACT.sql
  2. +6
    -0
      mallinkService/src/main/java/com/iformall/domain/po/WxPropertyContract.java

+ 3
- 0
mallinkAdmin/src/main/resources/db/migration/V201906171731__ALTER_PROPERTY_CONTRACT.sql Ver fichero

@@ -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按金额';

+ 6
- 0
mallinkService/src/main/java/com/iformall/domain/po/WxPropertyContract.java Ver fichero

@@ -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")


Cargando…
Cancelar
Guardar