1234567891011121314151617181920212223242526272829303132333435363738 |
- using GxPress.Common.Page;
- namespace GxPress.Request.Attach
- {
-
-
-
- public class AttachRequest : PageParameter
- {
-
-
-
-
- public string KeyWord { get; set; }
-
-
-
-
- public int CategoryId { get; set; }
-
-
-
-
- public int AdminId { get; set; }
-
-
-
-
- public int WithdrawType { get; set; }
-
-
-
-
- public int TypeId { get; set; }
- }
- }
|