This commit is contained in:
yuyubohh
2025-09-09 22:41:29 +08:00
commit e8494ba988
798 changed files with 252381 additions and 0 deletions

46
Models/ReciveDataBack.cs Normal file
View File

@@ -0,0 +1,46 @@
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace RB_MES_API.Models
{
/// <summary>
/// 推单成功备份,避免重复推送。非沃比系统使用
/// </summary>
public class ReciveDataBack
{
[Key]
public int FID { get; set; }
/// <summary>
/// 接口类型
/// </summary>
[DisplayName("接口类型")]
public string FDocType { get; set; }= string.Empty;
/// <summary>
/// 单据编号
/// </summary>
[DisplayName("单据编号")]
public string FBillNo { get; set; } = string.Empty;
/// <summary>
/// ERP单据编号
/// </summary>
[DisplayName("ERP单据编号")]
public int FErpID { get; set; } = 0;
/// <summary>
/// ERP单据行号
/// </summary>
[DisplayName("ERP单据行号")]
public int FSeq { get; set; } = 0;
/// <summary>
/// MES提供的唯一识别号
/// </summary>
[DisplayName("MES提供的唯一识别号")]
public string QUEUE_ID { get; set; } = string.Empty;
/// <summary>
/// 推送方的全部内容
/// </summary>
[DisplayName("推送方的全部内容")]
public string FJson { get; set; }= string.Empty;
//[Timestamp]
//public byte[] Version { get; set; }
}
}