using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CK.SCP.Models.UniApiEntity { public partial class xxbom_ps_mstr { [Key] public int xxbom_ps_UID { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxbom_ps_seq { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxbom_ps_project { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(18)] public string xxbom_ps_par { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(18)] public string xxbom_ps_comp { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(12)] public string xxbom_ps_ref { get; set; } public decimal xxbom_ps_qty_per { get; set; } public decimal? xxbom_ps_scrp_pct { get; set; } public int? xxbom_ps_lt_off { get; set; } public DateTime xxbom_ps_start { get; set; } public DateTime? xxbom_ps_end { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(24)] public string xxbom_ps_rmks { get; set; } public int xxbom_ps_op { get; set; } public int? xxbom_ps_item_no { get; set; } public bool? xxbom_ps_mandatory { get; set; } public bool? xxbom_ps_exclusive { get; set; } [StringLength(8)] public string xxbom_ps_process { get; set; } [StringLength(1)] public string xxbom_ps_qty_type { get; set; } [StringLength(8)] public string xxbom_ps_user1 { get; set; } [StringLength(8)] public string xxbom_ps_user2 { get; set; } public decimal? xxbom_ps_fcst_pct { get; set; } public bool? xxbom_ps_default { get; set; } [StringLength(8)] public string xxbom_ps_group { get; set; } public bool? xxbom_ps_critical { get; set; } public decimal? xxbom_ps_qty_per_b { get; set; } [StringLength(2)] public string xxbom_ps_comp_um { get; set; } [StringLength(50)] public string xxbom_ps_um_conv { get; set; } public decimal? xxbom_ps_assay { get; set; } [StringLength(8)] public string xxbom_ps_comm_code { get; set; } public bool? xxbom_ps_non_bal { get; set; } public bool? xxbom_ps_byproduct { get; set; } [StringLength(8)] public string xxbom_ps_userid { get; set; } [Column(TypeName = "date")] public DateTime? xxbom_ps_mod_date { get; set; } public decimal? xxbom_ps_batch_pct { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(1)] public string xxbom_ps_qadread { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(1)] public string xxbom_ps_wmsread { get; set; } [StringLength(1)] public string xxbom_ps_scmread { get; set; } public string xxbom_ps_mesread { get; set; } public DateTime? xxbom_ps_createdt { get; set; } [StringLength(8)] public string xxbom_ps_createur { get; set; } public DateTime? xxbom_ps_updatedt { get; set; } [StringLength(8)] public string xxbom_ps_updateur { get; set; } [StringLength(8)] public string xxbom_ps_domain { get; set; } } }