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