using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///
///
[SugarTable("OA_StaffFirmProfile")]
public partial class OA_StaffFirmProfile
{
public OA_StaffFirmProfile(){
}
///
/// Desc:主键,标识ID
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int Keyid {get;set;}
///
/// Desc:会员唯一编号
/// Default:
/// Nullable:True
///
public Guid? FirmId {get;set;}
///
/// Desc:所在地省份
/// Default:
/// Nullable:True
///
public string MP_Province {get;set;}
///
/// Desc:所在地城市
/// Default:
/// Nullable:True
///
public string MP_City {get;set;}
///
/// Desc:所在地地区
/// Default:
/// Nullable:True
///
public string MP_Area {get;set;}
///
/// Desc:邮编
/// Default:
/// Nullable:True
///
public string MP_PostNumber {get;set;}
///
/// Desc:公司(网店)名称
/// Default:
/// Nullable:True
///
public string MP_CompanyName {get;set;}
///
/// Desc:所属行业
/// Default:
/// Nullable:True
///
public string MP_ResumeIndustry {get;set;}
///
/// Desc:应聘地址
/// Default:
/// Nullable:True
///
public string MP_ResumePlace {get;set;}
///
/// Desc:应聘联系人
/// Default:
/// Nullable:True
///
public string MP_ResumePeople {get;set;}
///
/// Desc:应聘联系电话
/// Default:
/// Nullable:True
///
public string MP_ResumePhone {get;set;}
///
/// Desc:应聘行车路线
/// Default:
/// Nullable:True
///
public string MP_ResumeCarWay {get;set;}
///
/// Desc:公司网站
/// Default:
/// Nullable:False
///
public string MP_CompanyWebsite {get;set;}
///
/// Desc:最后修改时间
/// Default:
/// Nullable:False
///
public DateTime LastUpdateTime {get;set;}
///
/// Desc:操作人
/// Default:
/// Nullable:False
///
public string Operator {get;set;}
///
/// Desc:备注
/// Default:
/// Nullable:True
///
public string Remark {get;set;}
}
}