using Newtonsoft.Json; using System.ComponentModel.DataAnnotations; namespace VOL.Entity.DomainModels { public class CTNPARAMS { [Display(Name = "提单号")] [MaxLength(50)] [Required(ErrorMessage = "提单号不能为空")] public string Mblno { get; set; } [MaxLength(50)] [Display(Name = "箱号")] [Required(ErrorMessage = "箱号不能为空")] public string Yard { get; set; } //[MaxLength(50)] //[Display(Name = "isweb")] //[Required(ErrorMessage = "isweb不能为空")] public string Isweb { get; set; } public string jck { get; set; } } }