You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DSWMS/Vue.Net/VOL.Entity/DomainModels/WMS/CTNPARAMS.cs

24 lines
670 B
C#

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; }
}
}