using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("wms_rejection")] [Serializable] public class WmsRejection : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("rejection_code")] [DisplayName(" ")] public string RejectionCode { get; set; } [Column("rejection_name")] [DisplayName(" ")] public string RejectionName { get; set; } } }