using System; using System.ComponentModel.DataAnnotations; namespace CK.SCP.Models.UniApiEntity { public partial class xxscm_tx_det { [Key] public int xxscm_tx_uid { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxscm_tx_seq { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxscm_tx_domain { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(200)] public string xxscm_tx_boxcode { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(20)] public string xxscm_tx_nbr { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxscm_tx_vend { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(18)] public string xxscm_tx_part { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxscm_tx_batch { get; set; } public decimal xxscm_tx_qty_real { get; set; } [StringLength(1)] public string xxscm_tx_qadread { get; set; } [StringLength(1)] public string xxscm_tx_wmsread { get; set; } [StringLength(1)] public string xxscm_tx_scmread { get; set; } [StringLength(1)] public string xxscm_tx_mesread { get; set; } public string xxscm_tx_rmks { get; set; } public DateTime? xxscm_tx_createdt { get; set; } [StringLength(50)] public string xxscm_tx_createur { get; set; } public DateTime? xxscm_tx_updatedt { get; set; } [StringLength(50)] public string xxscm_tx_updateur { get; set; } } }