using System.ComponentModel.DataAnnotations; namespace CK.SCP.Models.UniApiEntity { public partial class xxmes_ctrl { public int xxmes_ctrl_uid { get; set; } [Key] [StringLength(50)] public string xxmes_seq { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxmes_table { get; set; } public int xxmes_table_qty { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(1)] public string xxmes_qad { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(1)] public string xxmes_mes { get; set; } [StringLength(1)] public string xxmes_scm { get; set; } [StringLength(1)] public string xxmes_wms { get; set; } public string xxmes_rmks { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxmes_domain { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxmes_site { get; set; } } }