using System; using System.ComponentModel.DataAnnotations; namespace CK.SCP.Models.UniApiEntity { public partial class xxscm_ctrl { [Key] public int xxscm_uid { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxscm_seq { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxscm_domain { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxscm_site { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(18)] public string xxscm_table { get; set; } public int xxscm_table_qty { get; set; } [StringLength(1)] public string xxscm_qad { get; set; } [StringLength(1)] public string xxscm_mes { get; set; } [StringLength(1)] public string xxscm_scm { get; set; } [StringLength(1)] public string xxscm_wms { get; set; } [Required(AllowEmptyStrings = true)] public string xxscm_rmks { get; set; } public DateTime xxscm_create_time { get; set; } } }