ThreadingSelfcheck.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace com.steering.mes.mcp.entity
  6. {
  7. /// <summary>
  8. /// 接箍车丝实绩自检记录实体类
  9. /// </summary>
  10. [Serializable]
  11. public class ThreadingSelfcheck
  12. {
  13. /** 序列号 */
  14. private String seqNo;
  15. public String SeqNo
  16. {
  17. get { return seqNo; }
  18. set { seqNo = value; }
  19. }
  20. /** 螺距 */
  21. private String lead;
  22. public String Lead
  23. {
  24. get { return lead; }
  25. set { lead = value; }
  26. }
  27. /** 齿高 */
  28. private String height;
  29. public String Height
  30. {
  31. get { return height; }
  32. set { height = value; }
  33. }
  34. /** 锥度 */
  35. private String taper;
  36. public String Taper
  37. {
  38. get { return taper; }
  39. set { taper = value; }
  40. }
  41. /** 紧密距 */
  42. private String pitchDimeter;
  43. public String PitchDimeter
  44. {
  45. get { return pitchDimeter; }
  46. set { pitchDimeter = value; }
  47. }
  48. /** 计划号 */
  49. private String planNo;
  50. public String PlanNo
  51. {
  52. get { return planNo; }
  53. set { planNo = value; }
  54. }
  55. /** 状态 */
  56. private String state;
  57. public String State
  58. {
  59. get { return state; }
  60. set { state = value; }
  61. }
  62. }
  63. }