You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
524 B

3 weeks ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. /// <summary>
  8. /// 站点
  9. /// </summary>
  10. public class ICSBadReason
  11. {
  12. //不良原因组编码
  13. public string BRGCode { get; set; }
  14. //不良原因组描述
  15. public string BRGDesc { get; set; }
  16. //不良原因编码
  17. public string BadReasonCode { get; set; }
  18. //不良原因描述
  19. public string BadReasonDesc { get; set; }
  20. }
  21. }