using System.ComponentModel.DataAnnotations;
namespace StopShopping.Services.Models.Req;
///
/// 新增/修改收货地址
///
///
public record EditAddressParams
{
///
/// 大于0时为修改
///
///
public int? Id { get; set; }
///
/// 姓名
///
///
[Required]
[MaxLength(20)]
public string Name { get; set; } = string.Empty;
///
/// 联系电话
///
///
[Required]
[Phone]
public string Telephone { get; set; } = string.Empty;
///
/// 自定义标签
///
///
[MaxLength(20)]
public string? Tag { get; set; }
///
/// 是否默认地址
///
///
public bool Default { get; set; }
///
/// 区域id,表示省/直辖市
///
///
public int DistrictLevel1Id { get; set; }
///
/// 区域id,表示市/直辖市时为空
///
///
public int? DistrictLevel2Id { get; set; }
///
/// 区域id,表示区
///
///
public int DistrictLevel3Id { get; set; }
///
/// 区域id,表示街道/镇
///
///
public int DistrictLevel4Id { get; set; }
///
/// 详细地址
///
///
[MaxLength(200)]
public string? Detail { get; set; }
}