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.
28 lines
789 B
C#
28 lines
789 B
C#
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; }
|
|
}
|
|
} |