Files
FA/SytelineSaAppDataModel/ItemWarehouse.cs
2024-10-28 17:19:27 +01:00

206 lines
5.1 KiB
C#

namespace SytelineSaAppDataModel
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("itemwhse")]
public partial class ItemWarehouse
{
[Key]
[Column("item", Order = 0)]
[StringLength(30)]
public string Item { get; set; }
[Key]
[Column("whse", Order = 1)]
[StringLength(4)]
public string Warehouse { get; set; }
[Column("qty_on_hand")]
public decimal? QuantityOnHand { get; set; }
public decimal? qty_alloc_co { get; set; }
public decimal? alloc_trn { get; set; }
public decimal? qty_trans { get; set; }
public decimal? qty_ordered { get; set; }
public decimal? qty_mrb { get; set; }
public decimal? qty_sold_ytd { get; set; }
public decimal? qty_pur_ytd { get; set; }
public decimal? trn_in_ytd { get; set; }
public decimal? trn_out_ytd { get; set; }
public decimal? qty_reorder { get; set; }
public decimal? sales_ytd { get; set; }
public decimal? sales_ptd { get; set; }
public short? cycle_freq { get; set; }
public DateTime? last_cycle { get; set; }
public byte? cnt_in_proc { get; set; }
public byte? cycle_flag { get; set; }
[StringLength(4)]
public string cycle_type { get; set; }
public decimal? phy_inv_qty { get; set; }
public DateTime? phy_inv_dte { get; set; }
public decimal? qty_wip { get; set; }
public decimal? qty_rsvd_co { get; set; }
[StringLength(10)]
public string replen_po_num { get; set; }
[StringLength(10)]
public string replen_ps_num { get; set; }
[StringLength(10)]
public string replen_trn_num { get; set; }
public byte NoteExistsFlag { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
[Required]
[StringLength(30)]
public string CreatedBy { get; set; }
[Required]
[StringLength(30)]
public string UpdatedBy { get; set; }
public DateTime CreateDate { get; set; }
public byte InWorkflow { get; set; }
public decimal? count_sequence { get; set; }
public decimal? last_count_qty_on_hand { get; set; }
public decimal? unit_cost { get; set; }
public decimal? lst_u_cost { get; set; }
public decimal? avg_u_cost { get; set; }
public decimal? asm_setup { get; set; }
public decimal? asm_run { get; set; }
public decimal? asm_matl { get; set; }
public decimal? asm_tool { get; set; }
public decimal? asm_fixture { get; set; }
public decimal? asm_other { get; set; }
public decimal? asm_fixed { get; set; }
public decimal? asm_var { get; set; }
public decimal? asm_outside { get; set; }
public decimal? comp_setup { get; set; }
public decimal? comp_run { get; set; }
public decimal? comp_matl { get; set; }
public decimal? comp_tool { get; set; }
public decimal? comp_fixture { get; set; }
public decimal? comp_other { get; set; }
public decimal? comp_fixed { get; set; }
public decimal? comp_var { get; set; }
public decimal? comp_outside { get; set; }
public decimal? sub_matl { get; set; }
public decimal? cur_u_cost { get; set; }
public decimal? unit_mat_cost { get; set; }
public decimal? unit_duty_cost { get; set; }
public decimal? unit_freight_cost { get; set; }
public decimal? unit_brokerage_cost { get; set; }
public decimal? unit_insurance_cost { get; set; }
public decimal? unit_loc_frt_cost { get; set; }
public decimal? cur_mat_cost { get; set; }
public decimal? cur_duty_cost { get; set; }
public decimal? cur_freight_cost { get; set; }
public decimal? cur_brokerage_cost { get; set; }
public decimal? cur_insurance_cost { get; set; }
public decimal? cur_loc_frt_cost { get; set; }
public decimal? matl_cost { get; set; }
public decimal? lbr_cost { get; set; }
public decimal? fovhd_cost { get; set; }
public decimal? vovhd_cost { get; set; }
public decimal? out_cost { get; set; }
public decimal? cur_matl_cost { get; set; }
public decimal? cur_lbr_cost { get; set; }
public decimal? cur_fovhd_cost { get; set; }
public decimal? cur_vovhd_cost { get; set; }
public decimal? cur_out_cost { get; set; }
public decimal? avg_matl_cost { get; set; }
public decimal? avg_lbr_cost { get; set; }
public decimal? avg_fovhd_cost { get; set; }
public decimal? avg_vovhd_cost { get; set; }
public decimal? avg_out_cost { get; set; }
public decimal? min_consignment_qty { get; set; }
public decimal? max_consignment_qty { get; set; }
public decimal? qty_contained { get; set; }
}
}