using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Web; namespace DSWeb.Common.DB { [Table("company_join_apply")] public class CompanyJoinApply { public const string ApplyStatusNoAudit = "NoAudit"; public const string ApplyStatusSuccess = "Success"; public const string ApplyStatusReject = "Reject"; [Key] [Column(Order = 0)] public string UserId { get; set; } [Key] [Column(Order = 1)] public string CompId { get; set; } public DateTime ApplyTime { get; set; } public string ApplyStatus { get; set; } public string ApplyResult { get; set; } } }