ResponseKeySn.cs 362 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace MES.Production.Entity.ResponseMod
  7. {
  8. public class ResponseKeySn:BaseResponseModel
  9. {
  10. /// <summary>
  11. /// 秘匙
  12. /// </summary>
  13. public string KeySn
  14. {
  15. get;set;
  16. }
  17. }
  18. }