123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- 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 OfficialActivitiesByDiIdDto: DtoBase
- {
- public int DiId { get; set; }
- }
- public class OfficialActivitiesDiIdDto
- {
- public int Id { get; set; }
- public int DiId { get; set; }
- }
- public class OpOfficialActivitiesDto
- {
-
-
-
-
-
- public int Status { get; set; }
-
-
-
- public int Id { get; set; }
-
-
-
- public int DiId { get; set; }
-
-
-
- public int Type { get; set; }
- public string Client { get; set; }
-
-
-
- public string Date { get; set; }
-
-
-
- public string Time { get; set; }
-
-
-
- public string Address { get; set; }
-
-
-
- public string Contact { get; set; }
-
-
-
- public string Job { get; set; }
-
-
-
- public string Tel { get; set; }
-
-
-
- public int OfficialForm { get; set; }
-
-
-
- public string Setting { get; set; }
-
-
-
- public string Dresscode { get; set; }
-
-
-
- public string Attendees { get; set; }
-
-
-
- public int IsNeedTrans { get; set; }
-
-
-
- public string Translators { get; set; }
-
-
-
- public string language { get; set; }
-
-
-
- public string Trip { get; set; }
-
-
-
- public int CreateUserId { get; set; }
-
-
-
- public string Remark { get; set; }
-
-
-
- public int IsSubmitApproval { get; set; }
-
-
-
- public int IsPay { get; set; }
-
-
-
- public string Country { get; set; }
-
-
-
- public string Area { get; set; }
-
-
-
- public string Field { get; set; }
-
-
-
- public string ReqSample { get; set; }
-
-
-
- public string? EmailOrWeChat { get; set; }
-
-
-
- public string? Website { get; set; }
-
-
-
-
- public int NatureId { get; set; }
- }
- public class OfficialActivitiesUploadFilesDto
- {
- public List<IFormFile> files { get; set; }
- public int id { get; set; }
- public int diId { get; set; }
- public int currUserId { get; set; }
- }
- public class OfficialActivitiesDelFileDto
- {
- public int Id { get; set; }
- public string FileName { get; set; }
- }
- public class OfficialActivitiesInviteOperationDto
- {
- public int Id { get; set; }
-
-
-
-
- public int Type { get; set; }
- }
-
-
-
- public class OfficialActivitiesFileDownload
- {
-
-
-
-
-
- public int FileType { get; set; } = 1;
- public int DiId { get; set; }
- }
- public class PostOfficialActivitiesReqReqSampleTipsDto
- {
- public string country { get; set; }
- public string area { get; set; }
- public string client { get; set; }
- }
- }
|