CheckconsignBaseinfo.cs 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. using System;
  2. using System.Text;
  3. namespace com.hnshituo.pur.vo
  4. {
  5. [Serializable]
  6. public class CheckconsignBaseinfo
  7. {
  8. /** 检验编号 */
  9. private string checkNo;
  10. public string CheckNo
  11. {
  12. get { return checkNo; }
  13. set { checkNo = value; }
  14. }
  15. /** 批次号(检验的生产批号等于取样批) (待删除) */
  16. private string batchNo;
  17. public string BatchNo
  18. {
  19. get { return batchNo; }
  20. set { batchNo = value; }
  21. }
  22. /** 标准基础信息索引号MIC+7位流水 */
  23. private string mic;
  24. public string Mic
  25. {
  26. get { return mic; }
  27. set { mic = value; }
  28. }
  29. /** 原材料规范描述用,分割 物料+牌号+产品标准+技术标准+组别+级别 + 验证方式 */
  30. private string micDesc;
  31. public string MicDesc
  32. {
  33. get { return micDesc; }
  34. set { micDesc = value; }
  35. }
  36. /** 物料中类代码 */
  37. private string matClassCode;
  38. public string MatClassCode
  39. {
  40. get { return matClassCode; }
  41. set { matClassCode = value; }
  42. }
  43. /** 物料中类名称 */
  44. private string matClassName;
  45. public string MatClassName
  46. {
  47. get { return matClassName; }
  48. set { matClassName = value; }
  49. }
  50. /** 物料编码 PUR_MAT PC_FLAG = ‘1’ AND VALIDFLAG = ‘1’ ITEM_CODE */
  51. private string itemCode;
  52. public string ItemCode
  53. {
  54. get { return itemCode; }
  55. set { itemCode = value; }
  56. }
  57. /** 试样名称 PUR_MAT PC_FLAG = ‘1’ AND VALIDFLAG = ‘1’ ITEM_NAME */
  58. private string itemName;
  59. public string ItemName
  60. {
  61. get { return itemName; }
  62. set { itemName = value; }
  63. }
  64. /** 牌号 */
  65. private string grade;
  66. public string Grade
  67. {
  68. get { return grade; }
  69. set { grade = value; }
  70. }
  71. /** 主键ID PUR_STANDARDS VALIDFLAG = ‘1’ */
  72. private string standardsId;
  73. public string StandardsId
  74. {
  75. get { return standardsId; }
  76. set { standardsId = value; }
  77. }
  78. /** 采购标准编号 产品标准 */
  79. private string standardsCode;
  80. public string StandardsCode
  81. {
  82. get { return standardsCode; }
  83. set { standardsCode = value; }
  84. }
  85. /** 内控标准ID(技术标准) */
  86. private string productStdId;
  87. public string ProductStdId
  88. {
  89. get { return productStdId; }
  90. set { productStdId = value; }
  91. }
  92. /** 内控标准(技术标准) */
  93. private string productStd;
  94. public string ProductStd
  95. {
  96. get { return productStd; }
  97. set { productStd = value; }
  98. }
  99. /** 合同号 */
  100. private string orderNo;
  101. public string OrderNo
  102. {
  103. get { return orderNo; }
  104. set { orderNo = value; }
  105. }
  106. /** 供应商(显示) */
  107. private string suppName;
  108. public string SuppName
  109. {
  110. get { return suppName; }
  111. set { suppName = value; }
  112. }
  113. /** 发站 起始站 */
  114. private string sendStation;
  115. public string SendStation
  116. {
  117. get { return sendStation; }
  118. set { sendStation = value; }
  119. }
  120. /** 发货单位 */
  121. private string sendDept;
  122. public string SendDept
  123. {
  124. get { return sendDept; }
  125. set { sendDept = value; }
  126. }
  127. /** 车船次 */
  128. private string carNum;
  129. public string CarNum
  130. {
  131. get { return carNum; }
  132. set { carNum = value; }
  133. }
  134. /** 车船号 */
  135. private string carNo;
  136. public string CarNo
  137. {
  138. get { return carNo; }
  139. set { carNo = value; }
  140. }
  141. /** 到站时间(到货日期) */
  142. private string arriveStationTime;
  143. public string ArriveStationTime
  144. {
  145. get { return arriveStationTime; }
  146. set { arriveStationTime = value; }
  147. }
  148. /** 重量(供货量) */
  149. private string weight;
  150. public string Weight
  151. {
  152. get { return weight; }
  153. set { weight = value; }
  154. }
  155. /** 重量单位 */
  156. private string weightUnit;
  157. public string WeightUnit
  158. {
  159. get { return weightUnit; }
  160. set { weightUnit = value; }
  161. }
  162. /** 0为初检,1为复检(样品类型) */
  163. private string checkCount;
  164. public string CheckCount
  165. {
  166. get { return checkCount; }
  167. set { checkCount = value; }
  168. }
  169. /** 委托单位 */
  170. private string consignDept;
  171. public string ConsignDept
  172. {
  173. get { return consignDept; }
  174. set { consignDept = value; }
  175. }
  176. /** 委托人(MES为质量下发委托,其他为调度人) */
  177. private string consignName;
  178. public string ConsignName
  179. {
  180. get { return consignName; }
  181. set { consignName = value; }
  182. }
  183. /** 委托时间 */
  184. private DateTime? consignTime;
  185. public DateTime? ConsignTime
  186. {
  187. get { return consignTime; }
  188. set { consignTime = value; }
  189. }
  190. /** 原材料项目编码 MAT=Materials 集合以,分割 */
  191. private string matCodeList;
  192. public string MatCodeList
  193. {
  194. get { return matCodeList; }
  195. set { matCodeList = value; }
  196. }
  197. /** 原材料项目名称 集合以,分割 */
  198. private string matNameList;
  199. public string MatNameList
  200. {
  201. get { return matNameList; }
  202. set { matNameList = value; }
  203. }
  204. /** 判定类型(验证方式) 代码 COM_BASE_INFO SORTCODE = ‘4090’ */
  205. private string judgeTypeCode;
  206. public string JudgeTypeCode
  207. {
  208. get { return judgeTypeCode; }
  209. set { judgeTypeCode = value; }
  210. }
  211. /** 委托备注 */
  212. private string remark;
  213. public string Remark
  214. {
  215. get { return remark; }
  216. set { remark = value; }
  217. }
  218. /** 是否判定 0 否 1已判定 */
  219. private string isJudge;
  220. public string IsJudge
  221. {
  222. get { return isJudge; }
  223. set { isJudge = value; }
  224. }
  225. /** 结果备注 */
  226. private string resultRemark;
  227. public string ResultRemark
  228. {
  229. get { return resultRemark; }
  230. set { resultRemark = value; }
  231. }
  232. /** 0供应部委托,1人工委托 */
  233. private string dataType;
  234. public string DataType
  235. {
  236. get { return dataType; }
  237. set { dataType = value; }
  238. }
  239. /** 数据状态(1有效、无效) */
  240. private string validflag;
  241. public string Validflag
  242. {
  243. get { return validflag; }
  244. set { validflag = value; }
  245. }
  246. /** 是否上传 0 否 1已上次产销 */
  247. private string isUpload;
  248. public string IsUpload
  249. {
  250. get { return isUpload; }
  251. set { isUpload = value; }
  252. }
  253. /** 质保书地址 */
  254. private string filePosition;
  255. public string FilePosition
  256. {
  257. get { return filePosition; }
  258. set { filePosition = value; }
  259. }
  260. /** 是否废钢 */
  261. private string isFg;
  262. public string IsFg
  263. {
  264. get { return isFg; }
  265. set { isFg = value; }
  266. }
  267. /** 判定类型 0 检验 1验证 2检验+验证默认0 */
  268. private string judgeType;
  269. public string JudgeType
  270. {
  271. get { return judgeType; }
  272. set { judgeType = value; }
  273. }
  274. /** 质保书是否存在 */
  275. private string zbsIsExist;
  276. public string ZbsIsExist
  277. {
  278. get { return zbsIsExist; }
  279. set { zbsIsExist = value; }
  280. }
  281. /** 取样标准描述 */
  282. private string getSampleStdDesc;
  283. public string GetSampleStdDesc
  284. {
  285. get { return getSampleStdDesc; }
  286. set { getSampleStdDesc = value; }
  287. }
  288. /** 送货单号(待删除) */
  289. private string deliverySubId;
  290. public string DeliverySubId
  291. {
  292. get { return deliverySubId; }
  293. set { deliverySubId = value; }
  294. }
  295. /** 交付地点编码 */
  296. private string deliveryLocationCode;
  297. public string DeliveryLocationCode
  298. {
  299. get { return deliveryLocationCode; }
  300. set { deliveryLocationCode = value; }
  301. }
  302. /** 交付地点 */
  303. private string deliveryLocation;
  304. public string DeliveryLocation
  305. {
  306. get { return deliveryLocation; }
  307. set { deliveryLocation = value; }
  308. }
  309. /** 判定等级代码(默认为合格不允许为空) 判定总结果 */
  310. private string judgeLevelCode;
  311. public string JudgeLevelCode
  312. {
  313. get { return judgeLevelCode; }
  314. set { judgeLevelCode = value; }
  315. }
  316. /** 等级维护在质量基础信息表,标准等级(合格,一级,二级,三级.....特级)没有等级的则是合格,判定的时候从最高级别开始判定 */
  317. private string judgeLevel;
  318. public string JudgeLevel
  319. {
  320. get { return judgeLevel; }
  321. set { judgeLevel = value; }
  322. }
  323. /** 一次判定结果 */
  324. private string judgeResult;
  325. public string JudgeResult
  326. {
  327. get { return judgeResult; }
  328. set { judgeResult = value; }
  329. }
  330. /** 二次判定结果 */
  331. private string judgeResultTwo;
  332. public string JudgeResultTwo
  333. {
  334. get { return judgeResultTwo; }
  335. set { judgeResultTwo = value; }
  336. }
  337. /** 取样标准 */
  338. private string getSampleStd;
  339. public string GetSampleStd
  340. {
  341. get { return getSampleStd; }
  342. set { getSampleStd = value; }
  343. }
  344. /** 检验编号 */
  345. private String[] checkNos;
  346. public String[] CheckNos
  347. {
  348. get { return checkNos; }
  349. set { checkNos = value; }
  350. }
  351. }
  352. }