| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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; }
- }
- }
|