using System; using System.ComponentModel.DataAnnotations; namespace CK.SCP.Models.UniApiEntity { public partial class xxwms_rc_det { [Key] public int xxwms_rc_uid { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxwms_rc_seq { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(20)] public string xxwms_rc_nbr { get; set; } [StringLength(20)] public string xxwms_rc_ps_nbr { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxwms_rc_po_nbr { get; set; } public int xxwms_rc_po_line { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(18)] public string xxwms_rc_part { get; set; } public decimal xxwms_rc_qty_total { get; set; } public DateTime xxwms_rc_date_ship { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxwms_rc_site { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxwms_rc_vend { get; set; } [StringLength(20)] public string xxwms_rc_ware_class { get; set; } [StringLength(20)] public string xxwms_rc_ware { get; set; } [StringLength(8)] public string xxwms_rc_loc { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(2)] public string xxwms_rc_po_um { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(2)] public string xxwms_rc_loc_um { get; set; } public decimal xxwms_rc_conv { get; set; } [StringLength(20)] public string xxwms_rc_lot { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(100)] public string xxwms_rc_vend_batch { get; set; } [StringLength(1)] public string xxwms_rc_qadread { get; set; } [StringLength(1)] public string xxwms_rc_wmsread { get; set; } [StringLength(1)] public string xxwms_rc_scmread { get; set; } [StringLength(1)] public string xxwms_rc_mesread { get; set; } public string xxwms_rc_rmks { get; set; } public DateTime? xxwms_rc_createdt { get; set; } [StringLength(18)] public string xxwms_rc_createur { get; set; } public DateTime? xxwms_rc_updatedt { get; set; } [StringLength(18)] public string xxwms_rc_updateur { get; set; } [StringLength(20)] public string xxwms_rc_domain { get; set; } } }