BusinessDeliveryStorageNotice.java 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828
  1. package com.chinaitop.depot.business.model;
  2. import java.util.Date;
  3. public class BusinessDeliveryStorageNotice {
  4. private Integer id;
  5. private String billType;
  6. private Integer billTypeId;
  7. private String billNumber;
  8. private String shipingCount;
  9. private String finishedCount;
  10. private String receivedMoney;
  11. private Integer customerBid;
  12. private String customerNumber;
  13. private String mobile;
  14. private String deliveryCustomer;
  15. private String contract;
  16. private Integer contractBid;
  17. private String planNumber;
  18. private Integer planBid;
  19. private String billMemo;
  20. private String grainPrice;
  21. private String moneyQuantity;
  22. private Integer grainAnnual;
  23. private Integer warehouse;
  24. private Integer goodsLocation;
  25. private String auditState;
  26. private Date storageTime;
  27. private String processInstanceId;
  28. private String processDefinitionId;
  29. private String qualityStandard;
  30. private Date agreeTime;
  31. private String billMan;
  32. private Date billDate;
  33. private String billUnit;
  34. private Integer houseId;
  35. private String houseName;
  36. private Integer warehouseId;
  37. private String warehouseName;
  38. private String creater;
  39. private Date createTime;
  40. private String createUnit;
  41. private String createDepot;
  42. private Date updateTime;
  43. private Integer orgId;
  44. private Integer inApplication;
  45. private Integer createrId;
  46. private Integer rootContractBid;
  47. private String identification;
  48. private String carnumber;
  49. //业务字段(用于通知单新增)
  50. private Integer grainProducingArea;
  51. public Integer getGrainProducingArea() {
  52. return grainProducingArea;
  53. }
  54. public void setGrainProducingArea(Integer grainProducingArea) {
  55. this.grainProducingArea = grainProducingArea;
  56. }
  57. /**
  58. *
  59. * @return id
  60. */
  61. public Integer getId() {
  62. return id;
  63. }
  64. /**
  65. *
  66. * @param id
  67. */
  68. public void setId(Integer id) {
  69. this.id = id;
  70. }
  71. /**
  72. * 凭证类型(1 入库凭证;3 出库凭证)
  73. * @return bill_type 凭证类型(1 入库凭证;3 出库凭证)
  74. */
  75. public String getBillType() {
  76. return billType;
  77. }
  78. /**
  79. * 凭证类型(1 入库凭证;3 出库凭证)
  80. * @param billType 凭证类型(1 入库凭证;3 出库凭证)
  81. */
  82. public void setBillType(String billType) {
  83. this.billType = billType == null ? null : billType.trim();
  84. }
  85. /**
  86. * 出入库通知单类型id
  87. * @return bill_type_id 出入库通知单类型id
  88. */
  89. public Integer getBillTypeId() {
  90. return billTypeId;
  91. }
  92. /**
  93. * 出入库通知单类型id
  94. * @param billTypeId 出入库通知单类型id
  95. */
  96. public void setBillTypeId(Integer billTypeId) {
  97. this.billTypeId = billTypeId;
  98. }
  99. /**
  100. * 通知单编号
  101. * @return bill_number 通知单编号
  102. */
  103. public String getBillNumber() {
  104. return billNumber;
  105. }
  106. /**
  107. * 通知单编号
  108. * @param billNumber 通知单编号
  109. */
  110. public void setBillNumber(String billNumber) {
  111. this.billNumber = billNumber == null ? null : billNumber.trim();
  112. }
  113. /**
  114. * 数量
  115. * @return shiping_count 数量
  116. */
  117. public String getShipingCount() {
  118. return shipingCount;
  119. }
  120. /**
  121. * 数量
  122. * @param shipingCount 数量
  123. */
  124. public void setShipingCount(String shipingCount) {
  125. this.shipingCount = shipingCount == null ? null : shipingCount.trim();
  126. }
  127. /**
  128. * 完成数量
  129. * @return finished_count 完成数量
  130. */
  131. public String getFinishedCount() {
  132. return finishedCount;
  133. }
  134. /**
  135. * 完成数量
  136. * @param finishedCount 完成数量
  137. */
  138. public void setFinishedCount(String finishedCount) {
  139. this.finishedCount = finishedCount == null ? null : finishedCount.trim();
  140. }
  141. /**
  142. * 已收到总金额
  143. * @return received_money 已收到总金额
  144. */
  145. public String getReceivedMoney() {
  146. return receivedMoney;
  147. }
  148. /**
  149. * 已收到总金额
  150. * @param receivedMoney 已收到总金额
  151. */
  152. public void setReceivedMoney(String receivedMoney) {
  153. this.receivedMoney = receivedMoney == null ? null : receivedMoney.trim();
  154. }
  155. /**
  156. * 客户id
  157. * @return customer_bid 客户id
  158. */
  159. public Integer getCustomerBid() {
  160. return customerBid;
  161. }
  162. /**
  163. * 客户id
  164. * @param customerBid 客户id
  165. */
  166. public void setCustomerBid(Integer customerBid) {
  167. this.customerBid = customerBid;
  168. }
  169. /**
  170. *
  171. * @return customer_number
  172. */
  173. public String getCustomerNumber() {
  174. return customerNumber;
  175. }
  176. /**
  177. *
  178. * @param customerNumber
  179. */
  180. public void setCustomerNumber(String customerNumber) {
  181. this.customerNumber = customerNumber == null ? null : customerNumber.trim();
  182. }
  183. /**
  184. * 联系电话
  185. * @return mobile 联系电话
  186. */
  187. public String getMobile() {
  188. return mobile;
  189. }
  190. /**
  191. * 联系电话
  192. * @param mobile 联系电话
  193. */
  194. public void setMobile(String mobile) {
  195. this.mobile = mobile == null ? null : mobile.trim();
  196. }
  197. /**
  198. * 单位名称(提货单的提货单位;或者是发货单的发货单位)
  199. * @return delivery_customer 单位名称(提货单的提货单位;或者是发货单的发货单位)
  200. */
  201. public String getDeliveryCustomer() {
  202. return deliveryCustomer;
  203. }
  204. /**
  205. * 单位名称(提货单的提货单位;或者是发货单的发货单位)
  206. * @param deliveryCustomer 单位名称(提货单的提货单位;或者是发货单的发货单位)
  207. */
  208. public void setDeliveryCustomer(String deliveryCustomer) {
  209. this.deliveryCustomer = deliveryCustomer == null ? null : deliveryCustomer.trim();
  210. }
  211. /**
  212. * 合同编号
  213. * @return contract 合同编号
  214. */
  215. public String getContract() {
  216. return contract;
  217. }
  218. /**
  219. * 合同编号
  220. * @param contract 合同编号
  221. */
  222. public void setContract(String contract) {
  223. this.contract = contract == null ? null : contract.trim();
  224. }
  225. /**
  226. * 合同id
  227. * @return contract_bid 合同id
  228. */
  229. public Integer getContractBid() {
  230. return contractBid;
  231. }
  232. /**
  233. * 合同id
  234. * @param contractBid 合同id
  235. */
  236. public void setContractBid(Integer contractBid) {
  237. this.contractBid = contractBid;
  238. }
  239. /**
  240. * 计划编号
  241. * @return plan_number 计划编号
  242. */
  243. public String getPlanNumber() {
  244. return planNumber;
  245. }
  246. /**
  247. * 计划编号
  248. * @param planNumber 计划编号
  249. */
  250. public void setPlanNumber(String planNumber) {
  251. this.planNumber = planNumber == null ? null : planNumber.trim();
  252. }
  253. /**
  254. * 计划id
  255. * @return plan_bid 计划id
  256. */
  257. public Integer getPlanBid() {
  258. return planBid;
  259. }
  260. /**
  261. * 计划id
  262. * @param planBid 计划id
  263. */
  264. public void setPlanBid(Integer planBid) {
  265. this.planBid = planBid;
  266. }
  267. /**
  268. * 备注
  269. * @return bill_memo 备注
  270. */
  271. public String getBillMemo() {
  272. return billMemo;
  273. }
  274. /**
  275. * 备注
  276. * @param billMemo 备注
  277. */
  278. public void setBillMemo(String billMemo) {
  279. this.billMemo = billMemo == null ? null : billMemo.trim();
  280. }
  281. /**
  282. *
  283. * @return grain_price
  284. */
  285. public String getGrainPrice() {
  286. return grainPrice;
  287. }
  288. /**
  289. *
  290. * @param grainPrice
  291. */
  292. public void setGrainPrice(String grainPrice) {
  293. this.grainPrice = grainPrice == null ? null : grainPrice.trim();
  294. }
  295. /**
  296. * 金额
  297. * @return money_quantity 金额
  298. */
  299. public String getMoneyQuantity() {
  300. return moneyQuantity;
  301. }
  302. /**
  303. * 金额
  304. * @param moneyQuantity 金额
  305. */
  306. public void setMoneyQuantity(String moneyQuantity) {
  307. this.moneyQuantity = moneyQuantity == null ? null : moneyQuantity.trim();
  308. }
  309. /**
  310. * 粮食年期
  311. * @return grain_annual 粮食年期
  312. */
  313. public Integer getGrainAnnual() {
  314. return grainAnnual;
  315. }
  316. /**
  317. * 粮食年期
  318. * @param grainAnnual 粮食年期
  319. */
  320. public void setGrainAnnual(Integer grainAnnual) {
  321. this.grainAnnual = grainAnnual;
  322. }
  323. /**
  324. * 绑定的仓库
  325. * @return warehouse 绑定的仓库
  326. */
  327. public Integer getWarehouse() {
  328. return warehouse;
  329. }
  330. /**
  331. * 绑定的仓库
  332. * @param warehouse 绑定的仓库
  333. */
  334. public void setWarehouse(Integer warehouse) {
  335. this.warehouse = warehouse;
  336. }
  337. /**
  338. * 绑定的仓房货位
  339. * @return goods_location 绑定的仓房货位
  340. */
  341. public Integer getGoodsLocation() {
  342. return goodsLocation;
  343. }
  344. /**
  345. * 绑定的仓房货位
  346. * @param goodsLocation 绑定的仓房货位
  347. */
  348. public void setGoodsLocation(Integer goodsLocation) {
  349. this.goodsLocation = goodsLocation;
  350. }
  351. /**
  352. * 审批状态 0待提交,1审批中,2同意,3驳回,4拒绝
  353. * @return audit_state 审批状态 0待提交,1审批中,2同意,3驳回,4拒绝
  354. */
  355. public String getAuditState() {
  356. return auditState;
  357. }
  358. /**
  359. * 审批状态 0待提交,1审批中,2同意,3驳回,4拒绝
  360. * @param auditState 审批状态 0待提交,1审批中,2同意,3驳回,4拒绝
  361. */
  362. public void setAuditState(String auditState) {
  363. this.auditState = auditState == null ? null : auditState.trim();
  364. }
  365. /**
  366. * 入库时间
  367. * @return storage_time 入库时间
  368. */
  369. public Date getStorageTime() {
  370. return storageTime;
  371. }
  372. /**
  373. * 入库时间
  374. * @param storageTime 入库时间
  375. */
  376. public void setStorageTime(Date storageTime) {
  377. this.storageTime = storageTime;
  378. }
  379. /**
  380. * 流程实例id
  381. * @return process_instance_id 流程实例id
  382. */
  383. public String getProcessInstanceId() {
  384. return processInstanceId;
  385. }
  386. /**
  387. * 流程实例id
  388. * @param processInstanceId 流程实例id
  389. */
  390. public void setProcessInstanceId(String processInstanceId) {
  391. this.processInstanceId = processInstanceId == null ? null : processInstanceId.trim();
  392. }
  393. /**
  394. * 流程定义id
  395. * @return process_definition_id 流程定义id
  396. */
  397. public String getProcessDefinitionId() {
  398. return processDefinitionId;
  399. }
  400. /**
  401. * 流程定义id
  402. * @param processDefinitionId 流程定义id
  403. */
  404. public void setProcessDefinitionId(String processDefinitionId) {
  405. this.processDefinitionId = processDefinitionId == null ? null : processDefinitionId.trim();
  406. }
  407. /**
  408. * 质量标准
  409. * @return quality_standard 质量标准
  410. */
  411. public String getQualityStandard() {
  412. return qualityStandard;
  413. }
  414. /**
  415. * 质量标准
  416. * @param qualityStandard 质量标准
  417. */
  418. public void setQualityStandard(String qualityStandard) {
  419. this.qualityStandard = qualityStandard == null ? null : qualityStandard.trim();
  420. }
  421. /**
  422. * 审批完成时间
  423. * @return agree_time 审批完成时间
  424. */
  425. public Date getAgreeTime() {
  426. return agreeTime;
  427. }
  428. /**
  429. * 审批完成时间
  430. * @param agreeTime 审批完成时间
  431. */
  432. public void setAgreeTime(Date agreeTime) {
  433. this.agreeTime = agreeTime;
  434. }
  435. /**
  436. * 开单人名称
  437. * @return bill_man 开单人名称
  438. */
  439. public String getBillMan() {
  440. return billMan;
  441. }
  442. /**
  443. * 开单人名称
  444. * @param billMan 开单人名称
  445. */
  446. public void setBillMan(String billMan) {
  447. this.billMan = billMan == null ? null : billMan.trim();
  448. }
  449. /**
  450. * 开单日期
  451. * @return bill_date 开单日期
  452. */
  453. public Date getBillDate() {
  454. return billDate;
  455. }
  456. /**
  457. * 开单日期
  458. * @param billDate 开单日期
  459. */
  460. public void setBillDate(Date billDate) {
  461. this.billDate = billDate;
  462. }
  463. /**
  464. * 开单单位
  465. * @return bill_unit 开单单位
  466. */
  467. public String getBillUnit() {
  468. return billUnit;
  469. }
  470. /**
  471. * 开单单位
  472. * @param billUnit 开单单位
  473. */
  474. public void setBillUnit(String billUnit) {
  475. this.billUnit = billUnit == null ? null : billUnit.trim();
  476. }
  477. /**
  478. * 仓房编号 仓房id
  479. * @return house_id 仓房编号 仓房id
  480. */
  481. public Integer getHouseId() {
  482. return houseId;
  483. }
  484. /**
  485. * 仓房编号 仓房id
  486. * @param houseId 仓房编号 仓房id
  487. */
  488. public void setHouseId(Integer houseId) {
  489. this.houseId = houseId;
  490. }
  491. /**
  492. * 仓房名称
  493. * @return house_name 仓房名称
  494. */
  495. public String getHouseName() {
  496. return houseName;
  497. }
  498. /**
  499. * 仓房名称
  500. * @param houseName 仓房名称
  501. */
  502. public void setHouseName(String houseName) {
  503. this.houseName = houseName == null ? null : houseName.trim();
  504. }
  505. /**
  506. * 货位号 货位id
  507. * @return warehouse_id 货位号 货位id
  508. */
  509. public Integer getWarehouseId() {
  510. return warehouseId;
  511. }
  512. /**
  513. * 货位号 货位id
  514. * @param warehouseId 货位号 货位id
  515. */
  516. public void setWarehouseId(Integer warehouseId) {
  517. this.warehouseId = warehouseId;
  518. }
  519. /**
  520. * 货位名称
  521. * @return warehouse_name 货位名称
  522. */
  523. public String getWarehouseName() {
  524. return warehouseName;
  525. }
  526. /**
  527. * 货位名称
  528. * @param warehouseName 货位名称
  529. */
  530. public void setWarehouseName(String warehouseName) {
  531. this.warehouseName = warehouseName == null ? null : warehouseName.trim();
  532. }
  533. /**
  534. *
  535. * @return creater
  536. */
  537. public String getCreater() {
  538. return creater;
  539. }
  540. /**
  541. *
  542. * @param creater
  543. */
  544. public void setCreater(String creater) {
  545. this.creater = creater == null ? null : creater.trim();
  546. }
  547. /**
  548. *
  549. * @return create_time
  550. */
  551. public Date getCreateTime() {
  552. return createTime;
  553. }
  554. /**
  555. *
  556. * @param createTime
  557. */
  558. public void setCreateTime(Date createTime) {
  559. this.createTime = createTime;
  560. }
  561. /**
  562. *
  563. * @return create_unit
  564. */
  565. public String getCreateUnit() {
  566. return createUnit;
  567. }
  568. /**
  569. *
  570. * @param createUnit
  571. */
  572. public void setCreateUnit(String createUnit) {
  573. this.createUnit = createUnit == null ? null : createUnit.trim();
  574. }
  575. /**
  576. *
  577. * @return create_depot
  578. */
  579. public String getCreateDepot() {
  580. return createDepot;
  581. }
  582. /**
  583. *
  584. * @param createDepot
  585. */
  586. public void setCreateDepot(String createDepot) {
  587. this.createDepot = createDepot == null ? null : createDepot.trim();
  588. }
  589. /**
  590. *
  591. * @return update_time
  592. */
  593. public Date getUpdateTime() {
  594. return updateTime;
  595. }
  596. /**
  597. *
  598. * @param updateTime
  599. */
  600. public void setUpdateTime(Date updateTime) {
  601. this.updateTime = updateTime;
  602. }
  603. /**
  604. *
  605. * @return org_id
  606. */
  607. public Integer getOrgId() {
  608. return orgId;
  609. }
  610. /**
  611. *
  612. * @param orgId
  613. */
  614. public void setOrgId(Integer orgId) {
  615. this.orgId = orgId;
  616. }
  617. /**
  618. * 启用状态 0 : 未执行,1 : 执行中,2 : 执行完毕,3 : 终止,4 : 暂停
  619. * @return in_application 启用状态 0 : 未执行,1 : 执行中,2 : 执行完毕,3 : 终止,4 : 暂停
  620. */
  621. public Integer getInApplication() {
  622. return inApplication;
  623. }
  624. /**
  625. * 启用状态 0 : 未执行,1 : 执行中,2 : 执行完毕,3 : 终止,4 : 暂停
  626. * @param inApplication 启用状态 0 : 未执行,1 : 执行中,2 : 执行完毕,3 : 终止,4 : 暂停
  627. */
  628. public void setInApplication(Integer inApplication) {
  629. this.inApplication = inApplication;
  630. }
  631. /**
  632. *
  633. * @return creater_id
  634. */
  635. public Integer getCreaterId() {
  636. return createrId;
  637. }
  638. /**
  639. *
  640. * @param createrId
  641. */
  642. public void setCreaterId(Integer createrId) {
  643. this.createrId = createrId;
  644. }
  645. /**
  646. * 起始合同id
  647. * @return root_contract_bid 起始合同id
  648. */
  649. public Integer getRootContractBid() {
  650. return rootContractBid;
  651. }
  652. /**
  653. * 起始合同id
  654. * @param rootContractBid 起始合同id
  655. */
  656. public void setRootContractBid(Integer rootContractBid) {
  657. this.rootContractBid = rootContractBid;
  658. }
  659. /**
  660. * 证件号
  661. * @return identification 证件号
  662. */
  663. public String getIdentification() {
  664. return identification;
  665. }
  666. /**
  667. * 证件号
  668. * @param identification 证件号
  669. */
  670. public void setIdentification(String identification) {
  671. this.identification = identification == null ? null : identification.trim();
  672. }
  673. /**
  674. *
  675. * @return carNumber
  676. */
  677. public String getCarnumber() {
  678. return carnumber;
  679. }
  680. /**
  681. *
  682. * @param carnumber
  683. */
  684. public void setCarnumber(String carnumber) {
  685. this.carnumber = carnumber == null ? null : carnumber.trim();
  686. }
  687. }