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

1

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