using System; using System.Collections.Generic; namespace StopShopping.EF.Models; /// /// 收货地址 /// public partial class Address { /// /// 主键 /// public int Id { get; set; } /// /// 用户表id /// public int UserId { get; set; } /// /// 收货人地址 /// public string Name { get; set; } = null!; /// /// 联系电话 /// public string Telephone { get; set; } = null!; /// /// 自定义标签:学校、家等 /// 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; } /// /// 详细地址 /// public string? Detail { get; set; } /// /// 行政区域id,表示街道/镇 /// public int DistrictLevel4Id { get; set; } public virtual User User { get; set; } = null!; }