* Added MaterialTransaction entity, dto and service
This commit is contained in:
41
SytelineSaAppEfDataModel/Dtos/MaterialTransactionDto.cs
Normal file
41
SytelineSaAppEfDataModel/Dtos/MaterialTransactionDto.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
namespace SytelineSaAppEfDataModel.Dtos;
|
||||
|
||||
public class MaterialTransactionDto
|
||||
{
|
||||
public string MTGroup { get; set; }
|
||||
public string MTGroupNum { get; set; }
|
||||
public long 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 string PrefixId { get; set; }
|
||||
public string SequenceId { get; set; }
|
||||
public string 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user