using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace CK.SCP.Models.UniApiEntity { public partial class xxbom_ctrl { [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int xxbom_uid { get; set; } [Key] [StringLength(50)] public string xxbom_seq { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxbom_table { get; set; } public int xxbom_table_qty { get; set; } [StringLength(1)] public string xxbom_qad { get; set; } [StringLength(1)] public string xxbom_mes { get; set; } [StringLength(1)] public string xxbom_scm { get; set; } [StringLength(1)] public string xxbom_wms { get; set; } public string xxbom_rmks { get; set; } [StringLength(8)] public string xxbom_domain { get; set; } } }