using System; using System.Collections.Generic; using SqlSugar; using OfficeOpenXml.Attributes; using Newtonsoft.Json; namespace ARW.Model.Models.Business.OrderManage.OrderCustomerAddreses { /// /// 订单收货地址记录,数据实体对象 /// /// @author lwh /// @date 2023-08-29 /// [SugarTable("tb_order_customer_address")] public class OrderCustomerAddress : BusinessBase { /// /// 描述 : /// 空值 : false /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "order_customer_address_id")] public int OrderCustomerAddressId { get; set; } /// /// 描述 : /// 空值 : false /// [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "order_customer_address_guid")] public long OrderCustomerAddressGuid { get; set; } /// /// 描述 :订单guid /// 空值 : false /// [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(ColumnName = "order_guid")] public long OrderGuid { get; set; } /// /// 描述 :客户guid /// 空值 : false /// [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(ColumnName = "customer_guid")] public long CustomerGuid { get; set; } /// /// 描述 :客户地址guid /// 空值 : false /// [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(ColumnName = "customer_address_guid")] public long CustomerAddressGuid { get; set; } /// /// 描述 :收货人姓名 /// 空值 : false /// [SugarColumn(ColumnName = "consignee_name")] public string ConsigneeName { get; set; } /// /// 描述 :联系电话 /// 空值 : false /// public string Phont { get; set; } /// /// 描述 :省份ID /// 空值 : false /// [SugarColumn(ColumnName = "province_id")] public int ProvinceId { get; set; } /// /// 描述 :城市ID /// 空值 : false /// [SugarColumn(ColumnName = "city_id")] public int CityId { get; set; } /// /// 描述 :区/县ID /// 空值 : false /// [SugarColumn(ColumnName = "region_id")] public int RegionId { get; set; } /// /// 描述 :详细地址 /// 空值 : false /// public string Detail { get; set; } } }