指导价、底价改为空值

dev
cjy 6 days ago
parent aaa5eb7108
commit 8d884e8b54

@ -46,10 +46,10 @@ namespace DS.WMS.Core.Op.Dtos
/// <summary>
/// 指导价
/// </summary>
public int GuidePrice { get; set; }
public int? GuidePrice { get; set; }
/// <summary>
/// 底价
/// </summary>
public int FloorPrice { get; set; }
public int? FloorPrice { get; set; }
}
}

@ -45,10 +45,10 @@ namespace DS.WMS.Core.Op.Dtos
/// <summary>
/// 指导价
/// </summary>
public int GuidePrice { get; set; }
public int? GuidePrice { get; set; }
/// <summary>
/// 底价
/// </summary>
public int FloorPrice { get; set; }
public int? FloorPrice { get; set; }
}
}

@ -46,13 +46,13 @@ namespace DS.WMS.Core.Op.Entity
/// <summary>
/// 指导价
/// </summary>
[SugarColumn(ColumnDescription = "指导价", IsNullable = true, DefaultValue = "0")]
public int GuidePrice { get; set; }
[SugarColumn(ColumnDescription = "指导价", IsNullable = true, DefaultValue = "")]
public int? GuidePrice { get; set; }
/// <summary>
/// 底价
/// </summary>
[SugarColumn(ColumnDescription = "底价", IsNullable = true, DefaultValue = "0")]
public int FloorPrice { get; set; }
[SugarColumn(ColumnDescription = "底价", IsNullable = true, DefaultValue = "")]
public int? FloorPrice { get; set; }
}
}

Loading…
Cancel
Save