Commit 75d5bc33 authored by 黄奎's avatar 黄奎

1

parent 9d69ede3
...@@ -74,12 +74,12 @@ namespace Mall.Model.Entity.TradePavilion ...@@ -74,12 +74,12 @@ namespace Mall.Model.Entity.TradePavilion
/// <summary> /// <summary>
/// 意向楼层 /// 意向楼层
/// </summary> /// </summary>
public int IntentionalFloor { get; set; } public string IntentionalFloor { get; set; }
/// <summary> /// <summary>
/// 电梯数 /// 电梯数
/// </summary> /// </summary>
public int ElevatorNum { get; set; } public string ElevatorNum { get; set; }
/// <summary> /// <summary>
/// 物业费(元/㎡) /// 物业费(元/㎡)
......
...@@ -539,8 +539,8 @@ namespace Mall.WebApi.Controllers.TradePavilion ...@@ -539,8 +539,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
Renovation = parms.GetStringValue("Renovation"), Renovation = parms.GetStringValue("Renovation"),
Payment = parms.GetStringValue("Payment"), Payment = parms.GetStringValue("Payment"),
HandoverDate = parms.GetStringValue("HandoverDate"), HandoverDate = parms.GetStringValue("HandoverDate"),
IntentionalFloor = parms.GetInt("IntentionalFloor"), IntentionalFloor = parms.GetStringValue("IntentionalFloor"),
ElevatorNum = parms.GetInt("ElevatorNum"), ElevatorNum = parms.GetStringValue("ElevatorNum"),
PropertyFee = parms.GetDecimal("PropertyFee"), PropertyFee = parms.GetDecimal("PropertyFee"),
RentFee = parms.GetDecimal("RentFee"), RentFee = parms.GetDecimal("RentFee"),
ContactName = parms.GetStringValue("ContactName"), ContactName = parms.GetStringValue("ContactName"),
...@@ -616,8 +616,8 @@ namespace Mall.WebApi.Controllers.TradePavilion ...@@ -616,8 +616,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
Renovation = extModel?.Renovation ?? "", Renovation = extModel?.Renovation ?? "",
Payment = extModel?.Payment ?? "", Payment = extModel?.Payment ?? "",
HandoverDate = extModel?.HandoverDate ?? "", HandoverDate = extModel?.HandoverDate ?? "",
IntentionalFloor = extModel?.IntentionalFloor ?? 0, IntentionalFloor = extModel?.IntentionalFloor ?? "",
ElevatorNum = extModel?.ElevatorNum ?? 0, ElevatorNum = extModel?.ElevatorNum ?? "",
PropertyFee = extModel?.PropertyFee ?? 0, PropertyFee = extModel?.PropertyFee ?? 0,
RentFee = extModel?.RentFee ?? 0, RentFee = extModel?.RentFee ?? 0,
ContactName = extModel?.ContactName ?? "", ContactName = extModel?.ContactName ?? "",
......
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