using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayEcoEduCampusJobtalkCreateModel Data Structure.
///
[Serializable]
public class AlipayEcoEduCampusJobtalkCreateModel : AopObject
{
///
/// 公司在合作方的唯一标识id
///
[JsonProperty("campany_source")]
public string CampanySource { get; set; }
///
/// 工作城市
///
[JsonProperty("city")]
public string City { get; set; }
///
/// 工作城市code
///
[JsonProperty("city_code")]
public string CityCode { get; set; }
///
/// 宣讲会公司法律名称(唯一)
///
[JsonProperty("company_lawname")]
public string CompanyLawname { get; set; }
///
/// 宣讲会公司全称
///
[JsonProperty("company_name")]
public string CompanyName { get; set; }
///
/// 备用字段,json格式
///
[JsonProperty("content_var")]
public string ContentVar { get; set; }
///
/// 工作城市地区
///
[JsonProperty("district")]
public string District { get; set; }
///
/// 工作地点纬度
///
[JsonProperty("latitude")]
public string Latitude { get; set; }
///
/// 企业logo的url
///
[JsonProperty("logo_url")]
public string LogoUrl { get; set; }
///
/// 工作地点经度
///
[JsonProperty("longitude")]
public string Longitude { get; set; }
///
/// 工作省份
///
[JsonProperty("province")]
public string Province { get; set; }
///
/// 工作省份code
///
[JsonProperty("province_code")]
public string ProvinceCode { get; set; }
///
/// 街道
///
[JsonProperty("street")]
public string Street { get; set; }
///
/// 宣讲会举办地点
///
[JsonProperty("talk_address")]
public string TalkAddress { get; set; }
///
/// 宣讲会正文,过滤要求:表格,字体字号,符号,图片,链接
///
[JsonProperty("talk_content")]
public string TalkContent { get; set; }
///
/// 宣讲会结束时间(毫秒数)
///
[JsonProperty("talk_endtime")]
public string TalkEndtime { get; set; }
///
/// 宣讲会举办时间(毫秒数)
///
[JsonProperty("talk_holdtime")]
public string TalkHoldtime { get; set; }
///
/// 宣讲会举办学校code
///
[JsonProperty("talk_school_code")]
public string TalkSchoolCode { get; set; }
///
/// 宣讲会举办学校
///
[JsonProperty("talk_school_name")]
public string TalkSchoolName { get; set; }
///
/// 宣讲会来源方id
///
[JsonProperty("talk_source_code")]
public string TalkSourceCode { get; set; }
///
/// 宣讲会在合作方的ID
///
[JsonProperty("talk_source_id")]
public string TalkSourceId { get; set; }
///
/// 宣讲会标题
///
[JsonProperty("talk_title")]
public string TalkTitle { get; set; }
///
/// 宣讲会类型 1=宣讲会 2=空中宣讲会 3=双选会
///
[JsonProperty("talk_type")]
public long TalkType { get; set; }
///
/// 宣讲会信息来源
///
[JsonProperty("talksource_source")]
public string TalksourceSource { get; set; }
///
/// 企业官网
///
[JsonProperty("web_url")]
public string WebUrl { get; set; }
}
}