2025-03-28 09:49:56 +08:00

44 lines
1.1 KiB
C#
Raw 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 DataTransmission.Model
{
/// <summary>
/// 日结账期相关类
/// </summary>
public class EndaccountModel
{
/// <summary>
/// 日结账单内码
/// </summary>
public int EndaccountId { get; set; }
/// <summary>
/// 服务区名称
/// </summary>
public string ServerpartName { get; set; }
/// <summary>
/// 门店名称
/// </summary>
public string ShopName { get; set; }
/// <summary>
/// 机器名称
/// </summary>
public string MachineCode { get; set; }
/// <summary>
/// 日结时间
/// </summary>
public string EndaccountDate { get; set; }
/// <summary>
/// 异常类型<br/>
/// 1新增
/// 2调账
/// 3无效
/// 9其他
/// </summary>
public int ErrorType { get; set; }
}
}