PurCkInBill.cs 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Pur.Entity.configureEntity
  6. {
  7. [Serializable]
  8. public class PurCkInBillEntity:MatAttr
  9. {
  10. private string inStockNo;
  11. /// <summary>
  12. /// 入库单号(行号)
  13. /// </summary>
  14. public string InStockNo
  15. {
  16. set { inStockNo = value; }
  17. get { return inStockNo; }
  18. }
  19. private string matchid;
  20. public string Matchid
  21. {
  22. get { return matchid; }
  23. set { matchid = value; }
  24. }
  25. private string inStockMrNo;
  26. /// <summary>
  27. /// 入库单号
  28. /// </summary>
  29. public string InStockMrNo
  30. {
  31. set { inStockMrNo = value; }
  32. get { return inStockMrNo; }
  33. }
  34. private string putawayType;
  35. /// <summary>
  36. /// 入库性质
  37. /// </summary>
  38. public string PutawayType
  39. {
  40. set { putawayType = value; }
  41. get { return putawayType; }
  42. }
  43. private string recId;
  44. /// <summary>
  45. /// 收货单号
  46. /// </summary>
  47. public string RecId
  48. {
  49. set { recId = value; }
  50. get { return recId; }
  51. }
  52. private string refeId;
  53. /// <summary>
  54. /// 参考单号
  55. /// </summary>
  56. public string RefeId
  57. {
  58. set { refeId = value; }
  59. get { return refeId; }
  60. }
  61. private string refType;
  62. /// <summary>
  63. /// 参考单类别
  64. /// </summary>
  65. public string RefType
  66. {
  67. set { refType = value; }
  68. get { return refType; }
  69. }
  70. private string status;
  71. /// <summary>
  72. /// 状态
  73. /// </summary>
  74. public string Status
  75. {
  76. set { status = value; }
  77. get { return status; }
  78. }
  79. private string orderId;
  80. /// <summary>
  81. /// 合同号
  82. /// </summary>
  83. public string OrderId
  84. {
  85. set { orderId = value; }
  86. get { return orderId; }
  87. }
  88. /** 入库单位ID */
  89. private String operateOrgId;
  90. public String OperateOrgId
  91. {
  92. get { return operateOrgId; }
  93. set { operateOrgId = value; }
  94. }
  95. /** 入库单位名称 */
  96. private String operateOrgName;
  97. public String OperateOrgName
  98. {
  99. get { return operateOrgName; }
  100. set { operateOrgName = value; }
  101. }
  102. private string orderLineSqe;
  103. /// <summary>
  104. /// 合同行号
  105. /// </summary>
  106. public string OrderLineSqe
  107. {
  108. set { orderLineSqe = value; }
  109. get { return orderLineSqe; }
  110. }
  111. private string mrId;
  112. /// <summary>
  113. /// 申请单号
  114. /// </summary>
  115. public string MrId
  116. {
  117. set { mrId = value; }
  118. get { return mrId; }
  119. }
  120. private string itemCode;
  121. /// <summary>
  122. /// 物料编码
  123. /// </summary>
  124. public string ItemCode
  125. {
  126. set { itemCode = value; }
  127. get { return itemCode; }
  128. }
  129. private string itemDesc;
  130. /// <summary>
  131. /// 物料描述
  132. /// </summary>
  133. public string ItemDesc
  134. {
  135. set { itemDesc = value; }
  136. get { return itemDesc; }
  137. }
  138. private string itemName;
  139. /// <summary>
  140. /// 物料名称
  141. /// </summary>
  142. public string ItemName
  143. {
  144. set { itemName = value; }
  145. get { return itemName; }
  146. }
  147. private string itemDescE;
  148. /// <summary>
  149. /// 物料英文名称
  150. /// </summary>
  151. public string ItemDescE
  152. {
  153. set { itemDescE = value; }
  154. get { return itemDescE; }
  155. }
  156. private string itemSpec;
  157. /// <summary>
  158. /// 物料规格
  159. /// </summary>
  160. public string ItemSpec
  161. {
  162. set { itemSpec = value; }
  163. get { return itemSpec; }
  164. }
  165. private string itemUseUom;
  166. /// <summary>
  167. /// 是否使用采购单位
  168. /// </summary>
  169. public string ItemUseUom
  170. {
  171. set { itemUseUom = value; }
  172. get { return itemUseUom; }
  173. }
  174. private string itemUom;
  175. /// <summary>
  176. /// 采购单位(个、袋、桶)
  177. /// </summary>
  178. public string ItemUom
  179. {
  180. set { itemUom = value; }
  181. get { return itemUom; }
  182. }
  183. private Double? itemUomConefficient;
  184. /// <summary>
  185. /// 转换系数
  186. /// </summary>
  187. public Double? ItemUomConefficient
  188. {
  189. set { itemUomConefficient = value; }
  190. get { return itemUomConefficient; }
  191. }
  192. private string weightUnit;
  193. /// <summary>
  194. /// 库存单位
  195. /// </summary>
  196. public string WeightUnit
  197. {
  198. set { weightUnit = value; }
  199. get { return weightUnit; }
  200. }
  201. private string accountPeriod;
  202. /// <summary>
  203. /// 会计期
  204. /// </summary>
  205. public string AccountPeriod
  206. {
  207. set { accountPeriod = value; }
  208. get { return accountPeriod; }
  209. }
  210. private string invId;
  211. /// <summary>
  212. /// 库存记录号
  213. /// </summary>
  214. public string InvId
  215. {
  216. set { invId = value; }
  217. get { return invId; }
  218. }
  219. private string invLogic;
  220. /// <summary>
  221. /// 逻辑库区
  222. /// </summary>
  223. public string InvLogic
  224. {
  225. set { invLogic = value; }
  226. get { return invLogic; }
  227. }
  228. private string invPhysic;
  229. /// <summary>
  230. /// 物理库区
  231. /// </summary>
  232. public string InvPhysic
  233. {
  234. set { invPhysic = value; }
  235. get { return invPhysic; }
  236. }
  237. private string invPos;
  238. /// <summary>
  239. /// 库区储位
  240. /// </summary>
  241. public string InvPos
  242. {
  243. set { invPos = value; }
  244. get { return invPos; }
  245. }
  246. private string receiveType;
  247. /// <summary>
  248. /// 入库类型
  249. /// </summary>
  250. public string ReceiveType
  251. {
  252. set { receiveType = value; }
  253. get { return receiveType; }
  254. }
  255. private Double? inNum;
  256. /// <summary>
  257. /// 入库量
  258. /// </summary>
  259. public Double? InNum
  260. {
  261. set { inNum = value; }
  262. get { return inNum; }
  263. }
  264. private string inStockAmt;
  265. /// <summary>
  266. /// 入库金额
  267. /// </summary>
  268. public string InStockAmt
  269. {
  270. set { inStockAmt = value; }
  271. get { return inStockAmt; }
  272. }
  273. private Double? currencyCode;
  274. /// <summary>
  275. /// 币种代码
  276. /// </summary>
  277. public Double? CurrencyCode
  278. {
  279. set { currencyCode = value; }
  280. get { return currencyCode; }
  281. }
  282. private string exchangeRate;
  283. /// <summary>
  284. /// 兑换汇率
  285. /// </summary>
  286. public string ExchangeRate
  287. {
  288. set { exchangeRate = value; }
  289. get { return exchangeRate; }
  290. }
  291. private Double? primaryAmount;
  292. /// <summary>
  293. /// 原币金额
  294. /// </summary>
  295. public Double? PrimaryAmount
  296. {
  297. set { primaryAmount = value; }
  298. get { return primaryAmount; }
  299. }
  300. private Double? invoicedQty;
  301. /// <summary>
  302. /// 已结算量
  303. /// </summary>
  304. public Double? InvoicedQty
  305. {
  306. set { invoicedQty = value; }
  307. get { return invoicedQty; }
  308. }
  309. private Double? invoicedAmt;
  310. /// <summary>
  311. /// 已结算金额
  312. /// </summary>
  313. public Double? InvoicedAmt
  314. {
  315. set { invoicedAmt = value; }
  316. get { return invoicedAmt; }
  317. }
  318. private Double? bugPrice;
  319. /// <summary>
  320. /// 预算价
  321. /// </summary>
  322. public Double? BugPrice
  323. {
  324. set { bugPrice = value; }
  325. get { return bugPrice; }
  326. }
  327. private Double? expenseType;
  328. /// <summary>
  329. /// 费用类型
  330. /// </summary>
  331. public Double? ExpenseType
  332. {
  333. set { expenseType = value; }
  334. get { return expenseType; }
  335. }
  336. private string projectNo;
  337. /// <summary>
  338. /// 项目号
  339. /// </summary>
  340. public string ProjectNo
  341. {
  342. set { projectNo = value; }
  343. get { return projectNo; }
  344. }
  345. private string invResponser;
  346. /// <summary>
  347. /// 库存责任人
  348. /// </summary>
  349. public string InvResponser
  350. {
  351. set { invResponser = value; }
  352. get { return invResponser; }
  353. }
  354. private string invMaterialType;
  355. /// <summary>
  356. /// 库存物料方式
  357. /// </summary>
  358. public string InvMaterialType
  359. {
  360. set { invMaterialType = value; }
  361. get { return invMaterialType; }
  362. }
  363. private string invPriceType;
  364. /// <summary>
  365. /// 库存计价方式
  366. /// </summary>
  367. public string InvPriceType
  368. {
  369. set { invPriceType = value; }
  370. get { return invPriceType; }
  371. }
  372. private string invPosExecuteUser;
  373. /// <summary>
  374. /// 库区储位指定人
  375. /// </summary>
  376. public string InvPosExecuteUser
  377. {
  378. set { invPosExecuteUser = value; }
  379. get { return invPosExecuteUser; }
  380. }
  381. private DateTime? invPosExecuteDate;
  382. /// <summary>
  383. /// 库区储位指定日期
  384. /// </summary>
  385. public DateTime? InvPosExecuteDate
  386. {
  387. set { invPosExecuteDate = value; }
  388. get { return invPosExecuteDate; }
  389. }
  390. private DateTime? instockDate;
  391. /// <summary>
  392. /// 入库时间
  393. /// </summary>
  394. public DateTime? InstockDate
  395. {
  396. set { instockDate = value; }
  397. get { return instockDate; }
  398. }
  399. private string buyerDeptCode;
  400. /// <summary>
  401. /// 采购管理部门代码
  402. /// </summary>
  403. public string BuyerDeptCode
  404. {
  405. set { buyerDeptCode = value; }
  406. get { return buyerDeptCode; }
  407. }
  408. private string buyerDeptDesc;
  409. /// <summary>
  410. /// 采购管理部门描叙
  411. /// </summary>
  412. public string BuyerDeptDesc
  413. {
  414. set { buyerDeptDesc = value; }
  415. get { return buyerDeptDesc; }
  416. }
  417. /// <summary>
  418. /// 检验人工号
  419. /// </summary>
  420. private string checkUserName;
  421. public string CheckUserName
  422. {
  423. get { return checkUserName; }
  424. set { checkUserName = value; }
  425. }
  426. private string putawayCreatorUser;
  427. /// <summary>
  428. /// 入库单创建者
  429. /// </summary>
  430. public string PutawayCreatorUser
  431. {
  432. set { putawayCreatorUser = value; }
  433. get { return putawayCreatorUser; }
  434. }
  435. private string suppCode;
  436. /// <summary>
  437. /// 供应商代码
  438. /// </summary>
  439. public string SuppCode
  440. {
  441. set { suppCode = value; }
  442. get { return suppCode; }
  443. }
  444. private string suppName;
  445. /// <summary>
  446. /// 供应商名称
  447. /// </summary>
  448. public string SuppName
  449. {
  450. set { suppName = value; }
  451. get { return suppName; }
  452. }
  453. private string companyCode;
  454. /// <summary>
  455. /// 公司代码
  456. /// </summary>
  457. public string CompanyCode
  458. {
  459. set { companyCode = value; }
  460. get { return companyCode; }
  461. }
  462. private string companyName;
  463. /// <summary>
  464. /// 公司中文名称
  465. /// </summary>
  466. public string CompanyName
  467. {
  468. set { companyName = value; }
  469. get { return companyName; }
  470. }
  471. private string remark;
  472. /// <summary>
  473. /// 备注
  474. /// </summary>
  475. public string Remark
  476. {
  477. set { remark = value; }
  478. get { return remark; }
  479. }
  480. private string reviewState;
  481. /// <summary>
  482. /// 审批状态
  483. /// </summary>
  484. public string ReviewState
  485. {
  486. set { reviewState = value; }
  487. get { return reviewState; }
  488. }
  489. private string validflag;
  490. /// <summary>
  491. /// 数据状态(有效、无效)
  492. /// </summary>
  493. public string Validflag
  494. {
  495. set { validflag = value; }
  496. get { return validflag; }
  497. }
  498. private string createName;
  499. /// <summary>
  500. /// 创建人
  501. /// </summary>
  502. public string CreateName
  503. {
  504. set { createName = value; }
  505. get { return createName; }
  506. }
  507. private DateTime? createTime;
  508. /// <summary>
  509. /// 创建时间
  510. /// </summary>
  511. public DateTime? CreateTime
  512. {
  513. set { createTime = value; }
  514. get { return createTime; }
  515. }
  516. private string createUserid;
  517. /// <summary>
  518. /// 创建人ID
  519. /// </summary>
  520. public string CreateUserid
  521. {
  522. set { createUserid = value; }
  523. get { return createUserid; }
  524. }
  525. private string updateName;
  526. /// <summary>
  527. /// 修改人
  528. /// </summary>
  529. public string UpdateName
  530. {
  531. set { updateName = value; }
  532. get { return updateName; }
  533. }
  534. private DateTime? updateTime;
  535. /// <summary>
  536. /// 修改时间
  537. /// </summary>
  538. public DateTime? UpdateTime
  539. {
  540. set { updateTime = value; }
  541. get { return updateTime; }
  542. }
  543. private string updateUserid;
  544. /// <summary>
  545. /// 修改人ID
  546. /// </summary>
  547. public string UpdateUserid
  548. {
  549. set { updateUserid = value; }
  550. get { return updateUserid; }
  551. }
  552. private string deleteName;
  553. /// <summary>
  554. /// 废除人
  555. /// </summary>
  556. public string DeleteName
  557. {
  558. set { deleteName = value; }
  559. get { return deleteName; }
  560. }
  561. private DateTime? deleteTime;
  562. /// <summary>
  563. /// 废除时间
  564. /// </summary>
  565. public DateTime? DeleteTime
  566. {
  567. set { deleteTime = value; }
  568. get { return deleteTime; }
  569. }
  570. private string deleteUserid;
  571. /// <summary>
  572. /// 废除人ID
  573. /// </summary>
  574. public string DeleteUserid
  575. {
  576. set { deleteUserid = value; }
  577. get { return deleteUserid; }
  578. }
  579. private DateTime? checkDate;
  580. /// <summary>
  581. /// 检验日期
  582. /// </summary>
  583. public DateTime? CheckDate
  584. {
  585. set { checkDate = value; }
  586. get { return checkDate; }
  587. }
  588. private string checkUsername;
  589. /// <summary>
  590. /// 检验人姓名
  591. /// </summary>
  592. public string CheckUsername
  593. {
  594. set { checkUsername = value; }
  595. get { return checkUsername; }
  596. }
  597. private string checkUserid;
  598. /// <summary>
  599. /// 检验人账号
  600. /// </summary>
  601. public string CheckUserid
  602. {
  603. set { checkUserid = value; }
  604. get { return checkUserid; }
  605. }
  606. private string checkResult;
  607. /// <summary>
  608. /// 综合判定
  609. /// </summary>
  610. public string CheckResult
  611. {
  612. set { checkResult = value; }
  613. get { return checkResult; }
  614. }
  615. private Double? recQty;
  616. /// <summary>
  617. /// 实际收货量
  618. /// </summary>
  619. public Double? RecQty
  620. {
  621. set { recQty = value; }
  622. get { return recQty; }
  623. }
  624. private string result;
  625. /// <summary>
  626. /// 检验结果
  627. /// </summary>
  628. public string Result
  629. {
  630. set { result = value; }
  631. get { return result; }
  632. }
  633. private Double? recPassQty;
  634. /// <summary>
  635. /// 合格收货量
  636. /// </summary>
  637. public Double? RecPassQty
  638. {
  639. set { recPassQty = value; }
  640. get { return recPassQty; }
  641. }
  642. private Double? asnQty;
  643. /// <summary>
  644. /// 应到货量
  645. /// </summary>
  646. public Double? AsnQty
  647. {
  648. set { asnQty = value; }
  649. get { return asnQty; }
  650. }
  651. private string packageType;
  652. /// <summary>
  653. /// 包装方式
  654. /// </summary>
  655. public string PackageType
  656. {
  657. set { packageType = value; }
  658. get { return packageType; }
  659. }
  660. private string packageUnit;
  661. /// <summary>
  662. /// 包装单位
  663. /// </summary>
  664. public string PackageUnit
  665. {
  666. set { packageUnit = value; }
  667. get { return packageUnit; }
  668. }
  669. private Double? unitWeight;
  670. /// <summary>
  671. /// 每袋重量
  672. /// </summary>
  673. public Double? UnitWeight
  674. {
  675. set { unitWeight = value; }
  676. get { return unitWeight; }
  677. }
  678. private Double? kzQty;
  679. /// <summary>
  680. /// 扣杂量
  681. /// </summary>
  682. public Double? KzQty
  683. {
  684. set { kzQty = value; }
  685. get { return kzQty; }
  686. }
  687. private Double? jlQty;
  688. /// <summary>
  689. /// 计量结果
  690. /// </summary>
  691. public Double? JlQty
  692. {
  693. set { jlQty = value; }
  694. get { return jlQty; }
  695. }
  696. private string packageQty;
  697. /// <summary>
  698. /// 包装数
  699. /// </summary>
  700. public string PackageQty
  701. {
  702. set { packageQty = value; }
  703. get { return packageQty; }
  704. }
  705. private Double? deduction2;
  706. /// <summary>
  707. /// 扣机铁
  708. /// </summary>
  709. public Double? Deduction2
  710. {
  711. set { deduction2 = value; }
  712. get { return deduction2; }
  713. }
  714. private Double? deduction3;
  715. /// <summary>
  716. /// 扣超长
  717. /// </summary>
  718. public Double? Deduction3
  719. {
  720. set { deduction3 = value; }
  721. get { return deduction3; }
  722. }
  723. private Double? deduction4;
  724. /// <summary>
  725. /// 扣轻薄
  726. /// </summary>
  727. public Double? Deduction4
  728. {
  729. set { deduction4 = value; }
  730. get { return deduction4; }
  731. }
  732. private string purLineId;
  733. /// <summary>
  734. /// 采购计划行号
  735. /// </summary>
  736. public string PurLineId
  737. {
  738. set { packageQty = value; }
  739. get { return packageQty; }
  740. }
  741. private String[] purLineIds;
  742. /// <summary>
  743. /// 采购计划行号数组
  744. /// </summary>
  745. public String[] PurLineIds
  746. {
  747. get { return purLineIds; }
  748. set { purLineIds = value; }
  749. }
  750. private string isPrint;
  751. /// <summary>
  752. /// 是否已打印入库单
  753. /// </summary>
  754. public string IsPrint
  755. {
  756. set { isPrint = value; }
  757. get { return isPrint; }
  758. }
  759. private string matBatchNo;
  760. /// <summary>
  761. /// 物料批号
  762. /// </summary>
  763. public string MatBatchNo
  764. {
  765. set { matBatchNo = value; }
  766. get { return matBatchNo; }
  767. }
  768. private string checkNo;
  769. /// <summary>
  770. /// 检验批号
  771. /// </summary>
  772. public string CheckNo
  773. {
  774. get { return checkNo; }
  775. set { checkNo = value; }
  776. }
  777. private string batchNo;
  778. /// <summary>
  779. /// 生产批次
  780. /// </summary>
  781. public string BatchNo
  782. {
  783. get { return batchNo; }
  784. set { batchNo = value; }
  785. }
  786. private string printCode;
  787. /// <summary>
  788. /// 打印编号
  789. /// </summary>
  790. public string PrintCode
  791. {
  792. get { return printCode; }
  793. set { printCode = value; }
  794. }
  795. private string deliveryLocationCode;
  796. /// <summary>
  797. /// 交付地址编码
  798. /// </summary>
  799. public string DeliveryLocationCode
  800. {
  801. set { deliveryLocationCode = value; }
  802. get { return deliveryLocationCode; }
  803. }
  804. private string deliveryLocation;
  805. /// <summary>
  806. /// 交付地址
  807. /// </summary>
  808. public string DeliveryLocation
  809. {
  810. set { deliveryLocation = value; }
  811. get { return deliveryLocation; }
  812. }
  813. /** 送货子单行号 */
  814. private String[] deliverySubLineSqes;
  815. public String[] DeliverySubLineSqes
  816. {
  817. get { return deliverySubLineSqes; }
  818. set { deliverySubLineSqes = value; }
  819. }
  820. private Double? gross;
  821. /// <summary>
  822. /// 毛重
  823. /// </summary>
  824. public Double? Gross
  825. {
  826. set { gross = value; }
  827. get { return gross; }
  828. }
  829. private Double? tare;
  830. /// <summary>
  831. /// 皮重
  832. /// </summary>
  833. public Double? Tare
  834. {
  835. set { tare = value; }
  836. get { return tare; }
  837. }
  838. private DateTime? suttletime;
  839. /// <summary>
  840. /// 净重时间
  841. /// </summary>
  842. public DateTime? Suttletime
  843. {
  844. set { suttletime = value; }
  845. get { return suttletime; }
  846. }
  847. private string carNum;
  848. /// <summary>
  849. /// 车牌号
  850. /// </summary>
  851. public string CarNum
  852. {
  853. set { carNum = value; }
  854. get { return carNum; }
  855. }
  856. private string unit;
  857. /// <summary>
  858. /// 科室
  859. /// </summary>
  860. public string Unit
  861. {
  862. set { unit = value; }
  863. get { return unit; }
  864. }
  865. private string basePriceName;
  866. /// <summary>
  867. /// 价格政策名称
  868. /// </summary>
  869. public string BasePriceName
  870. {
  871. set { basePriceName = value; }
  872. get { return basePriceName; }
  873. }
  874. private string basePriceId;
  875. /// <summary>
  876. /// 价格政策id
  877. /// </summary>
  878. public string BasePriceId
  879. {
  880. set { basePriceId = value; }
  881. get { return basePriceId; }
  882. }
  883. private Double? txtLEN_DEDUCT_PRICE;
  884. /// <summary>
  885. /// 超长扣减
  886. /// </summary>
  887. public Double? TxtLEN_DEDUCT_PRICE
  888. {
  889. set { txtLEN_DEDUCT_PRICE = value; }
  890. get { return txtLEN_DEDUCT_PRICE; }
  891. }
  892. private Double? txt_honour;
  893. /// <summary>
  894. /// 承兑加价
  895. /// </summary>
  896. public Double? Txt_honour
  897. {
  898. set { txt_honour = value; }
  899. get { return txt_honour; }
  900. }
  901. private Double? txt_volume;
  902. /// <summary>
  903. /// 保量加价
  904. /// </summary>
  905. public Double? Txt_volume
  906. {
  907. set { txt_volume = value; }
  908. get { return txt_volume; }
  909. }
  910. private Double? txt_check;
  911. /// <summary>
  912. /// 考核
  913. /// </summary>
  914. public Double? Txt_check
  915. {
  916. set { txt_check = value; }
  917. get { return txt_check; }
  918. }
  919. }
  920. }