41 lines
1.6 KiB
C#
41 lines
1.6 KiB
C#
namespace SytelineSaAppEfDataModel.Entities;
|
|
|
|
public class MaterialTransaction
|
|
{
|
|
public string? MTGroup { get; set; }
|
|
public string? MTGroupNum { get; set; }
|
|
public decimal? TransNum { get; set; }
|
|
public string? Item { get; set; }
|
|
public DateTime? TransDate { get; set; }
|
|
public decimal? Qty { get; set; }
|
|
public decimal? Cost { get; set; }
|
|
public string? Whse { get; set; }
|
|
public string? Loc { get; set; }
|
|
public string? RefNum { get; set; }
|
|
public short? RefLineSuf { get; set; }
|
|
public short? RefRelease { get; set; }
|
|
public string? ReasonCode { get; set; }
|
|
public string? TransType { get; set; }
|
|
public string? RefType { get; set; }
|
|
public string? MTReasonType { get; set; }
|
|
public long? PrefixId { get; set; }
|
|
public long? SequenceId { get; set; }
|
|
public long? WhseSequenceId { get; set; }
|
|
public bool? WhseSplit { get; set; }
|
|
public Guid? VariableId { get; set; }
|
|
public string? FormName { get; set; }
|
|
public bool? InWorkflow { 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 string? CustNum { get; set; }
|
|
public string? VendNum { get; set; }
|
|
public int? RecipNum { get; set; }
|
|
public string? Uf_FKR_internal_num_matltran_zn { get; set; }
|
|
public Guid? Session_Id { get; set; }
|
|
public string? Uf_MobileAppUser { get; set; }
|
|
public string? NR_KARTY_KONTROLNEJ { get; set; }
|
|
} |