41 lines
1.6 KiB
C#
41 lines
1.6 KiB
C#
namespace SytelineSaAppEfDataModel.Dtos;
|
|
|
|
public class CustomerTpDto
|
|
{
|
|
public string CustNum { get; set; }
|
|
public int CustSeq { get; set; }
|
|
public bool UpdCustAddress { get; set; }
|
|
public string TpCode { get; set; }
|
|
public string DunsNum { get; set; }
|
|
public bool GenAck { get; set; }
|
|
public bool PaperAck { get; set; }
|
|
public bool GenAsn { get; set; }
|
|
public bool PaperAsn { get; set; }
|
|
public bool GenInv { get; set; }
|
|
public bool PaperInv { get; set; }
|
|
public string AutoPost { get; set; }
|
|
public bool PostPlanned { get; set; }
|
|
public string ReleaseProc { get; set; }
|
|
public bool PooledAsn { get; set; }
|
|
public bool ValPrice { get; set; }
|
|
public string UsePrice { get; set; }
|
|
public bool ValCredit { get; set; }
|
|
public string NoteProc { get; set; }
|
|
public string UseDate { get; set; }
|
|
public short? DateOffset { get; set; }
|
|
public string InvCode { get; set; }
|
|
public string AckCode { get; set; }
|
|
public string AsnCode { get; set; }
|
|
public DateTime? LastItemDate { get; set; }
|
|
public DateTime? LastCustaDate { get; set; }
|
|
public bool IncludeSerial { get; set; }
|
|
public bool NoteExistsFlag { get; set; }
|
|
public DateTime RecordDate { get; set; }
|
|
public Guid RowPointer { get; set; }
|
|
public string CreatedBy { get; set; }
|
|
public string UpdatedBy { get; set; }
|
|
public DateTime CreateDate { get; set; }
|
|
public bool InWorkflow { get; set; }
|
|
public string Uf_FKR_EDI_RSSBussFolder { get; set; }
|
|
public string Uf_FKR_EDI_IdentificationCode { get; set; }
|
|
} |