You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
2.2 KiB

4 years ago
using System;
using System.ComponentModel.DataAnnotations;
namespace CK.SCP.Models.UniApiEntity
{
public partial class xxwms_arv_det
{
[Key]
public int xxwms_arv_uid { get; set; }
[StringLength(50)]
public string xxwms_arv_seq { get; set; }
[StringLength(20)]
public string xxwms_arv_nbr { get; set; }
[StringLength(20)]
public string xxwms_arv_ps_nbr { get; set; }
[StringLength(8)]
public string xxwms_arv_po_nbr { get; set; }
public int xxwms_arv_po_line { get; set; }
[StringLength(18)]
public string xxwms_arv_part { get; set; }
public decimal xxwms_arv_qty_total { get; set; }
public DateTime xxwms_arv_date_ship { get; set; }
[StringLength(8)]
public string xxwms_arv_site { get; set; }
[StringLength(8)]
public string xxwms_arv_vend { get; set; }
[StringLength(20)]
public string xxwms_arv_ware_class { get; set; }
[StringLength(20)]
public string xxwms_arv_ware { get; set; }
[StringLength(8)]
public string xxwms_arv_loc { get; set; }
[StringLength(2)]
public string xxwms_arv_po_um { get; set; }
[StringLength(2)]
public string xxwms_arv_loc_um { get; set; }
public decimal xxwms_arv_conv { get; set; }
[StringLength(100)]
public string xxwms_arv_lot { get; set; }
[StringLength(50)]
4 years ago
public string xxwms_arv_vend_batch { get; set; }
[StringLength(1)]
public string xxwms_arv_qadread { get; set; }
[StringLength(1)]
public string xxwms_arv_wmsread { get; set; }
[StringLength(1)]
public string xxwms_arv_scmread { get; set; }
[StringLength(1)]
public string xxwms_arv_mesread { get; set; }
public string xxwms_arv_rmks { get; set; }
public DateTime xxwms_arv_createdt { get; set; }
[StringLength(18)]
public string xxwms_arv_createur { get; set; }
public DateTime xxwms_arv_updatedt { get; set; }
[StringLength(18)]
public string xxwms_arv_updateur { get; set; }
[StringLength(18)]
public string xxwms_arv_trtype { get; set; }
}
}