using System; using System.ComponentModel.DataAnnotations; namespace CK.SCP.Models.UniApiEntity { public partial class xxqad_sche_mstr { [Key] public int xxqad_sche_uid { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxqad_sche_seq { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(18)] public string xxqad_sche_part { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxqad_sche_custpart { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxqad_sche_domain { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxqad_sche_cust { get; set; } [StringLength(100)] public string xxqad_sche_name { get; set; } [StringLength(100)] public string xxqad_sche_desc { get; set; } public decimal xxqad_sche_comment { get; set; } [StringLength(1)] public string xxqad_sche_qadread { get; set; } [StringLength(1)] public string xxqad_sche_wmsread { get; set; } [StringLength(1)] public string xxqad_sche_scmread { get; set; } [StringLength(1)] public string xxqad_sche_mesread { get; set; } public string xxqad_sche_rmks { get; set; } public DateTime? xxqad_sche_createdt { get; set; } [StringLength(8)] public string xxqad_sche_createur { get; set; } public DateTime? xxqad_sche_updatedt { get; set; } [StringLength(8)] public string xxqad_sche_updateur { get; set; } } }