using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 邀请方信息实体类
///
public class InvitingPartyInfo
{
///
/// 编号
///
public int Id { get; set; }
///
/// 团组编号
///
public int Diid { get; set; }
///
/// 国家
///
public string Country { get; set; }
///
/// 城市
///
public string City { get; set; }
///
/// 邀请方单位
///
public string InvitingUnit { get; set; }
///
/// 邀请方单位地址
///
public string InvitingAddress { get; set; }
///
/// 联系人
///
public string Contacts { get; set; }
///
/// 联系人工作
///
public string ContactsJob { get; set; }
///
/// 联系人电话
///
public string ContactsTel { get; set; }
///
/// 联系人公司邮件
///
public string ContactsEmail { get; set; }
///
/// 联系人公司传真
///
public string ContactsFax { get; set; }
///
/// 邀请函相对路径
///
public string InvitingUrl { get; set; }
///
/// 操作人
///
public int Oper { get; set; }
///
/// 操作时间
///
public string Opdate { get; set; }
///
/// 删除标识
///
public int Isdel { get; set; }
///
/// 邀请方官网
///
public string UnitWeb { get; set; }
///
/// 设计领域
///
public string Field { get; set; }
}
}