79 lines
1.8 KiB
C#
79 lines
1.8 KiB
C#
using ARW.Model.Vo.Business.Custom.Regions;
|
|
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ARW.Model.Vo.Business.LogisticsManage.DeliveryRules
|
|
{
|
|
/// <summary>
|
|
/// 配送模板区域及运费展示对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-06-16
|
|
/// </summary>
|
|
public class DeliveryRuleVo
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
public int DeliveryRuleId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long DeliveryRuleGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :配送模板guid
|
|
/// </summary>
|
|
[JsonConverter(typeof(ValueToStringConverter))]
|
|
public long DeliveryGuid { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :可配送区域(城市id集)
|
|
/// </summary>
|
|
public List<SecondRegionVo> DeliveryRuleRegion { get; set; }
|
|
|
|
public string DeliveryRuleRegionName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :可配送区域(文字展示)
|
|
/// </summary>
|
|
public string DeliveryRuleRegionText { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :首件(个)/首重(Kg)
|
|
/// </summary>
|
|
public decimal DeliveryRuleFirst { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :运费(元)
|
|
/// </summary>
|
|
public decimal DeliveryRuleFirstFee { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :续件/续重
|
|
/// </summary>
|
|
public decimal DeliveryRuleAdditional { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 :续费(元)
|
|
/// </summary>
|
|
public decimal DeliveryRuleAdditionalFee { get; set; }
|
|
|
|
}
|
|
}
|