using Microsoft.AspNetCore.Http;
using OASystem.Domain.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Dtos.Resource
{
public class TranslatorLibraryDto
{
}
public class TranslatorLibraryItemDto : DtoBase
{
public string Name { get; set; }
}
public class TranslatorLibraryOpDto:PortDtoBase
{
///
/// 操作状态
/// 1 添加
/// 2 编辑
///
public int Status { get; set; }
public int Id { get; set; }
///
/// 公务出访Ids
///
public int[] officialDutyIdItem { get; set; }
///
/// 所在地区
///
[Encrypted]
public string Area { get; set; }
///
/// 姓名
///
[Encrypted]
public string Name { get; set; }
///
/// 性别(0:未设置 1:男 2:女)
///
public int Sex { get; set; }
///
/// 照片
/// 传输图片转base64字符串
///
[Encrypted]
public string Photo { get; set; }
///
/// 联系电话
///
[Encrypted]
public string Tel { get; set; }
///
/// 邮箱号
///
[Encrypted]
public string Email { get; set; }
///
/// 微信号
///
[Encrypted]
public string WechatNo { get; set; }
///
/// 其他社交账号
///
[Encrypted]
public string OtherSocialAccounts { get; set; }
///
/// 语种
///
[Encrypted]
public string Language { get; set; }
///
/// 费用
///
public decimal Price { get; set; }
///
/// 币种
///
public int Currency { get; set; }
///
/// 简历或其他证书
///
public IFormFile[] Files { get; set; }
///
/// 备注
///
[Encrypted]
public string Remark { get; set; }
}
}