Commit 1d5123a1 authored by 吴春's avatar 吴春

1

parent ff96e55b
......@@ -59,12 +59,12 @@ namespace Mall.Model.Entity.TradePavilion
/// <summary>
/// 楼层数
/// </summary>
public int FloorNum { get; set; }
public string FloorNum { get; set; }
/// <summary>
/// 电梯数
/// </summary>
public int ElevatorNum { get; set; }
public string ElevatorNum { get; set; }
/// <summary>
/// 层高
......
......@@ -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>
/// 物业费(元/㎡)
......
......@@ -3054,8 +3054,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
CategoryName = extModel?.CategoryName ?? "",
Areas = extModel?.Areas ?? "",
BuildingNum = extModel?.BuildingNum ?? "",
FloorNum = extModel?.FloorNum ?? 0,
ElevatorNum = extModel?.ElevatorNum ?? 0,
FloorNum = extModel?.FloorNum ?? "",
ElevatorNum = extModel?.ElevatorNum ?? "",
FloorHeight = extModel?.FloorHeight ?? 0,
Developers = extModel?.Developers ?? "",
PropertyComp = extModel?.PropertyComp ?? "",
......@@ -3238,8 +3238,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,
BannerList = extModel?.BannerList ?? new List<string>(),
......@@ -3481,8 +3481,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"),
......@@ -3729,8 +3729,8 @@ namespace Mall.WebApi.Controllers.TradePavilion
CategoryId = parms.GetInt("CategoryId"),
Areas = parms.GetStringValue("Areas"),
BuildingNum = parms.GetStringValue("BuildingNum"),
FloorNum = parms.GetInt("FloorNum"),
ElevatorNum = parms.GetInt("ElevatorNum"),
FloorNum = parms.GetStringValue("FloorNum"),
ElevatorNum = parms.GetStringValue("ElevatorNum"),
FloorHeight = parms.GetDecimal("FloorHeight"),
Developers = parms.GetStringValue("Developers"),
PropertyComp = parms.GetStringValue("PropertyComp"),
......@@ -4000,7 +4000,6 @@ namespace Mall.WebApi.Controllers.TradePavilion
JObject parms = JObject.Parse(RequestParm.msg.ToString());
var query = new RB_Collect_Extend()
{
Type = parms.GetInt("Type"),
UserId = userInfo.UserId
};
......
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