1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 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; }
-
-
-
- public string UnitArea { get; set; }
-
-
-
- public string UnitName { get; set; }
-
-
-
- public string Contact { get; set; }
-
-
-
- public string ContactTel { get; set; }
-
-
-
- public int Score { get; set; }
-
-
-
- public string LastUpdateStr { get; set; }
- }
- }
|