using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.Resource { public class QueryIOAInitDataDto : PortDtoBase { } public class QueryInvitationOfficialActivityDataDto:DtoBase { /// /// 邀请方国家 /// public string Country { get; set; } /// /// 邀请方名称 /// public string UnitName { get; set; } /// /// 联系人 /// public string Contact { get; set; } /// /// 团名 /// public string Delegation { get; set; } /// /// 涉及领域 /// public string Field { get; set; } /// /// 创建者Id /// public int CreateUserId { get; set; } /// /// 创建时间(开始) /// public string StartCreateTime { get; set; } /// /// 创建时间(结束) /// public string EndCreateTime { get; set; } } public class QueryInvitationOfficialActivityByIdDto { public int Id { get; set; } } public class OpInvitationOfficialActivityDto { /// /// 操作状态 /// 1 添加 /// 2 修改 /// public int Status { get; set; } /// /// 编号 /// public int Id { get; set; } /// /// 文件集合 /// public IFormFile[] Files { get; set; } /// /// 邀请方国家 /// public string Country { get; set; } /// /// 城市 /// public string City { get; set; } /// /// 邀请方名称 /// public string UnitName { get; set; } /// ///邀请方官网 /// public string UnitWeb { get; set; } /// /// 涉及领域 /// public string Field { get; set; } /// /// 邀请方地址 /// public string Address { get; set; } /// /// 邀请方信息 /// public string UnitInfo { get; set; } /// /// 联系人 /// public string Contact { get; set; } /// /// 职务 /// public string Job { get; set; } /// /// 联系电话 /// public string Tel { get; set; } /// /// 电子邮箱 /// public string Email { get; set; } /// /// 微信 /// public string WeChat { get; set; } /// /// fb /// public string FaceBook { get; set; } /// /// ins /// public string Ins { get; set; } /// /// 团名 /// public string Delegation { get; set; } /// /// 文件地址 /// public string FilePath { get; set; } /// /// 修改版文件地址 /// public string SndFilePath { get; set; } /// /// 传真号码 /// public string Fax { get; set; } /// /// 创建者Id /// public int CreateUserId { get; set; } /// /// 备注 /// public string Remark { get; set; } } }