【修复】修改前端添加地址获取三级联动的判断模式,防止出现个人重名导致的获取序列失败的问题。

This commit is contained in:
jianweie code
2024-06-07 11:43:16 +08:00
parent 19fa51bcb6
commit 24f532ff0c
8 changed files with 77 additions and 102 deletions

View File

@@ -21,7 +21,7 @@ namespace CoreCms.Net.Model.ViewModels.DTO
{
public int availablePoint { get; set; } = 0;
public decimal pointExchangeMoney { get; set; } = 0;
public int @switch { get; set; } = 1;
public int point { get; set; } = 0;
@@ -75,16 +75,32 @@ namespace CoreCms.Net.Model.ViewModels.DTO
/// </summary>
public string cityName { get; set; }
/// <summary>
/// 市区序列号
/// </summary>
public int cityId { get; set; }
/// <summary>
/// 县
/// </summary>
public string countyName { get; set; }
/// <summary>
/// 县序列
/// </summary>
public int countyId { get; set; }
/// <summary>
/// 省
/// </summary>
public string provinceName { get; set; }
/// <summary>
/// 省序列
/// </summary>
public int provinceId { get; set; }
/// <summary>
/// 邮编
/// </summary>