using OASystem.Domain.Attributes;
using OASystem.Domain.Entities.Resource;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace OASystem.Domain.ViewModels.Resource
{
    public class MediaSupplierView : Res_MediaSuppliers
    {
    }

    public class MediaSupplierInfoView
    {
        public int Id { get; set; }
        public int TypeId { get; set; }
        [Encrypted]
        public string Privince { get; set; }
        [Encrypted]
        public string City { get; set; }
        [Encrypted]
        public string UnitName { get; set; }
        [Encrypted]
        public string UnitAbbreviation { get; set; }
        [Encrypted]
        public string UnitAddress { get; set; }
        [Encrypted]
        public string Contact { get; set; }
        public int Sex { get; set; }
        [Encrypted]
        public string Post { get; set; }
        [Encrypted]
        public string Fax { get; set; }
        [Encrypted]
        public string Tel { get; set; }
        [Encrypted]
        public string Email { get; set; }
        [Encrypted]
        public string WeChat { get; set; }
        [Encrypted]
        public string Remark { get; set; }
    }

    public class PageItemView
    {
        public int Id { get; set; }
        [Encrypted]
        public string Privince { get; set; }
        [Encrypted]
        public string City { get; set; }
        [Encrypted]
        public string UnitName { get; set; }
        [Encrypted]
        public string Contact { get; set; }
        public int Sex { get; set; }
        [Encrypted]
        public string Post { get; set; }
        [Encrypted]
        public string Tel { get; set; }
        public string CreateUserName { get; set; }
        public DateTime CreateTime { get; set; }
    }
}