using System; using System.ComponentModel.DataAnnotations; namespace CK.SCP.Models.UniApiEntity { public partial class xxwms_iss_det { [Key] public int xxwms_iss_uid { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] public string xxwms_iss_seq { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(20)] public string xxwms_iss_nbr { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxwms_iss_site { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(18)] public string xxwms_iss_part { get; set; } [StringLength(10)] public string xxwms_iss_lot { get; set; } public decimal xxwms_iss_qty { get; set; } public DateTime xxwms_iss_date { get; set; } public DateTime xxwms_iss_time { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(8)] public string xxwms_iss_loc { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(2)] public string xxwms_iss_um { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(100)] public string xxwms_iss_reason { get; set; } [StringLength(1)] public string xxwms_iss_qadread { get; set; } [StringLength(1)] public string xxwms_iss_wmsread { get; set; } [StringLength(1)] public string xxwms_iss_scmread { get; set; } [StringLength(1)] public string xxwms_iss_mesread { get; set; } public string xxwms_iss_rmks { get; set; } public DateTime? xxwms_iss_createdt { get; set; } [StringLength(18)] public string xxwms_iss_createur { get; set; } public DateTime? xxwms_iss_updatedt { get; set; } [StringLength(18)] public string xxwms_iss_updateur { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(20)] public string xxwms_iss_domain { get; set; } [StringLength(8)] public string xxwms_iss_project { get; set; } } }