123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace GxPress.Result.Notice
- {
-
-
-
- public class NoticePraisePageResult
- {
-
-
-
- public int UserId { get; set; }
-
-
-
- public string UserName { get; set; }
-
-
-
- public string Signature { get; set; }
-
-
-
- public DateTime CreatedDate { get; set; }
-
-
-
- public string NoticeName { get; set; }
-
-
-
- public string AvatarUrl { get; set; }
-
-
-
- public string DepartmentName { get; set; }
- }
- }
|