12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- using OASystem.Domain.Attributes;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Resource
- {
- public class Res_LocalGuideData_ListItemView
- {
-
-
-
- public int Id { get; set; }
-
-
-
- [Encrypted]
- public string UnitArea { get; set; }
-
-
-
- [Encrypted]
- public string UnitName { get; set; }
-
-
-
- [Encrypted]
- public string Contact { get; set; }
-
-
-
- [Encrypted]
- public string ContactTel { get; set; }
-
-
-
- public int Score { get; set; }
-
-
-
- public string LastUpdateStr { get; set; }
- }
- }
|