NoticeAddresseeSearchRequest.cs 336 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace GxPress.Request.Addressee
  5. {
  6. /// <summary>
  7. /// 获取收件人
  8. /// </summary>
  9. public class NoticeAddresseeSearchRequest
  10. {
  11. /// <summary>
  12. /// 通知ID
  13. /// </summary>
  14. public int ArticleId { get; set; }
  15. }
  16. }