namespace OASystem.Domain.Dtos.Resource
{
public class InvitationAI
{
}
///
/// 商邀资料AI 混元AI查询资料 Dto
///
public class InvitationAISetPromptDto
{
public int GroupId { get; set; }
///
/// 出访单位
///
public string OriginUnit { get; set; }
///
/// 出访国家
///
public string TargetCountry { get; set; }
///
/// 备注信息
///
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; }
}
}