|
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Linq;
|
|
|
|
namespace Models
|
|
|
|
namespace Khd.Core.Domain.Models
|
|
|
|
{
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 采购收料通知单;从ERP同步过来的信息,需要与物料信息关联,需要确认接口同步过来的信息内容
|
|
|
|
/// 采购收料通知单;从ERP同步过来的信息,需要与物料信息关联,需要确认接口同步过来的信息内容
|
|
|
|
@ -38,21 +38,21 @@ namespace Models
|
|
|
|
/// 默认值:
|
|
|
|
/// 默认值:
|
|
|
|
///</summary>
|
|
|
|
///</summary>
|
|
|
|
[Column("bill_no")]
|
|
|
|
[Column("bill_no")]
|
|
|
|
public string? Bill_no { get; set; }
|
|
|
|
public string Bill_no { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 备 注:采购订单编号;对应FOrderBillNo
|
|
|
|
/// 备 注:采购订单编号;对应FOrderBillNo
|
|
|
|
/// 默认值:
|
|
|
|
/// 默认值:
|
|
|
|
///</summary>
|
|
|
|
///</summary>
|
|
|
|
[Column("po_no")]
|
|
|
|
[Column("po_no")]
|
|
|
|
public string? Po_no { get; set; }
|
|
|
|
public string Po_no { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 备 注:单据状态;FDocumentStatus
|
|
|
|
/// 备 注:单据状态;FDocumentStatus
|
|
|
|
/// 默认值:
|
|
|
|
/// 默认值:
|
|
|
|
///</summary>
|
|
|
|
///</summary>
|
|
|
|
[Column("document_status")]
|
|
|
|
[Column("document_status")]
|
|
|
|
public string? Document_status { get; set; }
|
|
|
|
public string Document_status { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 备 注:ERP物料ID;FMaterialId
|
|
|
|
/// 备 注:ERP物料ID;FMaterialId
|
|
|
|
@ -73,21 +73,21 @@ namespace Models
|
|
|
|
/// 默认值:
|
|
|
|
/// 默认值:
|
|
|
|
///</summary>
|
|
|
|
///</summary>
|
|
|
|
[Column("material_name")]
|
|
|
|
[Column("material_name")]
|
|
|
|
public string? Material_name { get; set; }
|
|
|
|
public string Material_name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 备 注:源单内码;对应FDetailEntity_Link_FSBillId
|
|
|
|
/// 备 注:源单内码;对应FDetailEntity_Link_FSBillId
|
|
|
|
/// 默认值:
|
|
|
|
/// 默认值:
|
|
|
|
///</summary>
|
|
|
|
///</summary>
|
|
|
|
[Column("fs_bill_id")]
|
|
|
|
[Column("fs_bill_id")]
|
|
|
|
public string? Fs_bill_id { get; set; }
|
|
|
|
public string Fs_bill_id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 备 注:源单分录内码;对应FDetailEntity_Link_FSId
|
|
|
|
/// 备 注:源单分录内码;对应FDetailEntity_Link_FSId
|
|
|
|
/// 默认值:
|
|
|
|
/// 默认值:
|
|
|
|
///</summary>
|
|
|
|
///</summary>
|
|
|
|
[Column("fs_id")]
|
|
|
|
[Column("fs_id")]
|
|
|
|
public string? Fs_id { get; set; }
|
|
|
|
public string Fs_id { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 备 注:实到数量;对应FActlandQty
|
|
|
|
/// 备 注:实到数量;对应FActlandQty
|
|
|
|
@ -129,7 +129,7 @@ namespace Models
|
|
|
|
/// 默认值:
|
|
|
|
/// 默认值:
|
|
|
|
///</summary>
|
|
|
|
///</summary>
|
|
|
|
[Column("tond_base")]
|
|
|
|
[Column("tond_base")]
|
|
|
|
public string? Tond_base { get; set; }
|
|
|
|
public string Tond_base { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 备 注:单价;FPRICE
|
|
|
|
/// 备 注:单价;FPRICE
|
|
|
|
@ -150,14 +150,14 @@ namespace Models
|
|
|
|
/// 默认值:
|
|
|
|
/// 默认值:
|
|
|
|
///</summary>
|
|
|
|
///</summary>
|
|
|
|
[Column("remark")]
|
|
|
|
[Column("remark")]
|
|
|
|
public string? Remark { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 备 注:创建人
|
|
|
|
/// 备 注:创建人
|
|
|
|
/// 默认值:
|
|
|
|
/// 默认值:
|
|
|
|
///</summary>
|
|
|
|
///</summary>
|
|
|
|
[Column("create_by")]
|
|
|
|
[Column("create_by")]
|
|
|
|
public string? Create_by { get; set; }
|
|
|
|
public string Create_by { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 备 注:创建时间
|
|
|
|
/// 备 注:创建时间
|
|
|
|
@ -171,7 +171,7 @@ namespace Models
|
|
|
|
/// 默认值:
|
|
|
|
/// 默认值:
|
|
|
|
///</summary>
|
|
|
|
///</summary>
|
|
|
|
[Column("update_by")]
|
|
|
|
[Column("update_by")]
|
|
|
|
public string? Update_by { get; set; }
|
|
|
|
public string Update_by { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// 备 注:更新时间
|
|
|
|
/// 备 注:更新时间
|
|
|
|
|