using SqlSugar;
using System;
using System.Collections.Generic;
namespace EasyBL
{
public class ExpInfo
{
public string ExhibitionType { get; set; }
public string Id { get; set; }
public string Bills { get; set; }
public string ReturnBills { get; set; }
public string ActualCost { get; set; }
public string RefNumber { get; set; }
///
/// 展覽代碼
///
public string ExpNO { get; set; }
///
/// 代理
///
public string Agent { get; set; }
///
/// 參展廠商,OTB_OPM_OtherExhibitionTG、OTB_OPM_ExportExhibition使用
///
public string Exhibitors { get; set; }
///
/// 參展廠商,OTB_OPM_OtherExhibition、OTB_OPM_ImportExhibition使用
///
public string Supplier { get; set; }
///
/// 組團單位,僅出口OTB_OPM_ExportExhibition使用
///
public string Organizer { get; set; }
///
/// 負責人員
///
public string ResponsibleMember { get; set; }
///
/// 負責人員部門
///
public string DeptOfResponsibleMember { get; set; }
public string OrgID { get; set; }
}
}