using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///
///
[SugarTable("OA_StaffResumeWork")]
public partial class OA_StaffResumeWork
{
public OA_StaffResumeWork(){
}
///
/// Desc:主键--标识ID
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int Keyid {get;set;}
///
/// Desc:简历拥有者
/// Default:
/// Nullable:True
///
public Guid? Memberid {get;set;}
///
/// Desc:开始时间(年)(工作经验)
/// Default:
/// Nullable:True
///
public string R_W_StudyStartTime {get;set;}
///
/// Desc:结束时间(年)(工作经验)
/// Default:
/// Nullable:True
///
public string R_W_StudyEndTime {get;set;}
///
/// Desc:公司名称(工作经验)
/// Default:
/// Nullable:True
///
public string R_W_CompanyName {get;set;}
///
/// Desc:行业(工作经验)
/// Default:
/// Nullable:True
///
public string R_W_Industry {get;set;}
///
/// Desc:公司规模(工作经验)
/// Default:
/// Nullable:True
///
public string R_W_CompanyScale {get;set;}
///
/// Desc:公司性质(工作经验)
/// Default:
/// Nullable:True
///
public string R_W_CompanyNature {get;set;}
///
/// Desc:部门(工作经验)
/// Default:
/// Nullable:True
///
public string R_W_Department {get;set;}
///
/// Desc:职位(工作经验)
/// Default:
/// Nullable:True
///
public string R_W_Post {get;set;}
///
/// Desc:工作描述(工作经验)
/// Default:
/// Nullable:True
///
public string R_W_WorkDetail {get;set;}
///
/// Desc:排序
/// Default:0
/// Nullable:True
///
public int? OrderNum {get;set;}
///
/// Desc:最后修改时间
/// Default:
/// Nullable:False
///
public DateTime LastUpdateTime {get;set;}
///
/// Desc:操作人
/// Default:
/// Nullable:False
///
public string Operator {get;set;}
}
}