121 lines
2.7 KiB
C#
121 lines
2.7 KiB
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
|
|
namespace ARW.Model.Vo.Business.ShopManager.ShopAddresss
|
|
{
|
|
/// <summary>
|
|
/// 店铺地址展示对象
|
|
///
|
|
/// @author 黎文豪
|
|
/// @date 2023-06-15
|
|
/// </summary>
|
|
public class ShopAddressVo
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
[EpplusIgnore]
|
|
public int ShopAddressId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
[EpplusIgnore]
|
|
public long ShopAddressGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 : 店铺guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
[EpplusIgnore]
|
|
public long ShopGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :店铺名称
|
|
/// </summary>
|
|
[EpplusTableColumn(Header = "店铺")]
|
|
public string ShopName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述 :地址类型
|
|
/// </summary>
|
|
[EpplusIgnore]
|
|
public int ShopAddressType { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :地址类型名称
|
|
/// </summary>
|
|
[EpplusTableColumn(Header = "地址类型")]
|
|
public string ShopAddressTypeName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :省id
|
|
/// </summary>
|
|
[EpplusIgnore]
|
|
public int ProvinceId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :市id
|
|
/// </summary>
|
|
[EpplusIgnore]
|
|
public int CityId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :区id
|
|
/// </summary>
|
|
[EpplusIgnore]
|
|
public int DistrictId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :所在地区
|
|
/// </summary>
|
|
[EpplusTableColumn(Header = "所在地区")]
|
|
public string AddressName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :联系人姓名
|
|
/// </summary>
|
|
[EpplusTableColumn(Header = "联系人姓名")]
|
|
public string ShopAddressContactName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :联系电话
|
|
/// </summary>
|
|
[EpplusTableColumn(Header = "联系电话")]
|
|
public string ShopAddressContactNumber { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :详细地址
|
|
/// </summary>
|
|
[EpplusTableColumn(Header = "详细地址")]
|
|
public string ShopAddressDetailedAddress { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :排序
|
|
/// </summary>
|
|
[EpplusTableColumn(Header = "排序")]
|
|
public int ShopAddressSort { get; set; }
|
|
|
|
public string CreateTime { get; set; }
|
|
|
|
|
|
}
|
|
}
|