| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- namespace OASystem.Domain.Dtos.Resource
- {
- public class InvitationAI
- {
- }
- /// <summary>
- /// 商邀资料AI 混元AI查询资料 Dto
- /// </summary>
- public class InvitationAISetPromptDto
- {
- public int GroupId { get; set; }
- /// <summary>
- /// 出访单位
- /// </summary>
- public string OriginUnit { get; set; }
- /// <summary>
- /// 出访国家
- /// </summary>
- public string TargetCountry { get; set; }
- /// <summary>
- /// 备注信息
- /// </summary>
- public string OtherConstraints { get; set; }
- public int CurrUserId { get; set; }
- }
- public class InvitationAISearchDto
- {
- public int Id { get; set; }
- public int CurrUserId { get; set; }
- }
- public class InvitationAICompleteTextDto : InvitationAISearchDto
- { }
- public class InvitationAISingleDelDto
- {
- public int Id { get; set; }
- public string Guid { get; set; }
- }
- }
|