MatStdBaseinfo.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.ck
  4. {
  5. [Serializable]
  6. public class MatStdBaseinfo
  7. {
  8. /** 标准基础信息索引号MIC+7位流水 */
  9. private string mic;
  10. public string Mic
  11. {
  12. get { return mic; }
  13. set { mic = value; }
  14. }
  15. /** 原材料规范描述用,分割 物料+牌号+产品标准+技术标准+组别+级别 + 验证方式 */
  16. private string micDesc;
  17. public string MicDesc
  18. {
  19. get { return micDesc; }
  20. set { micDesc = value; }
  21. }
  22. /** 物料编码 PUR_MAT PC_FLAG = ‘1’ AND VALIDFLAG = ‘1’ */
  23. private string itemCode;
  24. public string ItemCode
  25. {
  26. get { return itemCode; }
  27. set { itemCode = value; }
  28. }
  29. /** 物料名称 */
  30. private string itemName;
  31. public string ItemName
  32. {
  33. get { return itemName; }
  34. set { itemName = value; }
  35. }
  36. /** 牌号 */
  37. private string grade;
  38. public string Grade
  39. {
  40. get { return grade; }
  41. set { grade = value; }
  42. }
  43. /** 主键ID PUR_STANDARDS VALIDFLAG = ‘1’ */
  44. private string standardsId;
  45. public string StandardsId
  46. {
  47. get { return standardsId; }
  48. set { standardsId = value; }
  49. }
  50. /** 采购标准编号 产品标准 */
  51. private string standardsCode;
  52. public string StandardsCode
  53. {
  54. get { return standardsCode; }
  55. set { standardsCode = value; }
  56. }
  57. /** 内控标准ID(技术标准) */
  58. private string productStdId;
  59. public string ProductStdId
  60. {
  61. get { return productStdId; }
  62. set { productStdId = value; }
  63. }
  64. /** 内控标准(技术标准) */
  65. private string productStd;
  66. public string ProductStd
  67. {
  68. get { return productStd; }
  69. set { productStd = value; }
  70. }
  71. /** 组别代码 默认为空 */
  72. private string groupLevelCode;
  73. public string GroupLevelCode
  74. {
  75. get { return groupLevelCode; }
  76. set { groupLevelCode = value; }
  77. }
  78. /** 组别描述 COM_BASE_INFO SORTCODE = ‘4091’ */
  79. private string groupLevel;
  80. public string GroupLevel
  81. {
  82. get { return groupLevel; }
  83. set { groupLevel = value; }
  84. }
  85. /** 等级代码(默认为合格不允许为空) */
  86. private string judgeLevelCode;
  87. public string JudgeLevelCode
  88. {
  89. get { return judgeLevelCode; }
  90. set { judgeLevelCode = value; }
  91. }
  92. /** 等级维护在质量基础信息表,标准等级(合格,一级,二级,三级.....特级)没有等级的则是合格,判定的时候从最高级别开始判定 */
  93. private string judgeLevel;
  94. public string JudgeLevel
  95. {
  96. get { return judgeLevel; }
  97. set { judgeLevel = value; }
  98. }
  99. /** 判定类型(验证方式) 代码 COM_BASE_INFO SORTCODE = ‘4090’ */
  100. private string judgeTypeCode;
  101. public string JudgeTypeCode
  102. {
  103. get { return judgeTypeCode; }
  104. set { judgeTypeCode = value; }
  105. }
  106. /** 判定类型 0 检验 1验证 2检验_验证默认0 */
  107. private string judgeType;
  108. public string JudgeType
  109. {
  110. get { return judgeType; }
  111. set { judgeType = value; }
  112. }
  113. /** 取样标准 */
  114. private string getSampleStd;
  115. public string GetSampleStd
  116. {
  117. get { return getSampleStd; }
  118. set { getSampleStd = value; }
  119. }
  120. /** 取样标准具体描述 */
  121. private string getSampleStdDesc;
  122. public string GetSampleStdDesc
  123. {
  124. get { return getSampleStdDesc; }
  125. set { getSampleStdDesc = value; }
  126. }
  127. /** 数据状态(有效、无效) */
  128. private string validflag;
  129. public string Validflag
  130. {
  131. get { return validflag; }
  132. set { validflag = value; }
  133. }
  134. /** 备注 */
  135. private string remark;
  136. public string Remark
  137. {
  138. get { return remark; }
  139. set { remark = value; }
  140. }
  141. /** 创建人 */
  142. private string createName;
  143. public string CreateName
  144. {
  145. get { return createName; }
  146. set { createName = value; }
  147. }
  148. /** 创建时间 */
  149. private DateTime? createTime;
  150. public DateTime? CreateTime
  151. {
  152. get { return createTime; }
  153. set { createTime = value; }
  154. }
  155. /** 修改人 */
  156. private string updateName;
  157. public string UpdateName
  158. {
  159. get { return updateName; }
  160. set { updateName = value; }
  161. }
  162. /** 修改时间 */
  163. private DateTime? updateTime;
  164. public DateTime? UpdateTime
  165. {
  166. get { return updateTime; }
  167. set { updateTime = value; }
  168. }
  169. /** 删除人 */
  170. private string deleteName;
  171. public string DeleteName
  172. {
  173. get { return deleteName; }
  174. set { deleteName = value; }
  175. }
  176. /** 删除时间 */
  177. private DateTime? deleteTime;
  178. public DateTime? DeleteTime
  179. {
  180. get { return deleteTime; }
  181. set { deleteTime = value; }
  182. }
  183. }
  184. }