2025-04-21 14:10:27 +08:00

46 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Act.SalesSheetPay
{
/// <summary>
///
/// </summary>
public class CalculationSheetTotalAmountAct
{
/// <summary>
/// 订单来源1销售单2预售单
/// </summary>
public int RefType { get; set; }
/// <summary>
/// 订单ID销售单ID或者预售单ID
/// </summary>
public Guid SheetId { get; set; }
/// <summary>
/// 优惠券ID
/// </summary>
public Guid? CouponId { get; set; }
/// <summary>
/// 抹零(抹掉的金额比如25.48如果抹掉0.48传0.48)
/// </summary>
public decimal? ClearZero { get; set; }
///// <summary>
///// 折扣(传小数比如9.8折传0.98)
///// </summary>
//public decimal? Discount { get; set; }
/// <summary>
/// 一口价金额
/// </summary>
public decimal? DirectAmount { get; set; }
}
}