BusinessStoreWareDetail.java 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815
  1. package com.chinaitop.depot.business.model;
  2. import java.util.Date;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. public class BusinessStoreWareDetail {
  5. private String agreementNumber;//协议编号
  6. private Integer incomingType;//入库类型
  7. public Integer getIncomingType() {
  8. return incomingType;
  9. }
  10. public void setIncomingType(Integer incomingType) {
  11. this.incomingType = incomingType;
  12. }
  13. public String getAgreementNumber() {
  14. return agreementNumber;
  15. }
  16. public void setAgreementNumber(String agreementNumber) {
  17. this.agreementNumber = agreementNumber;
  18. }
  19. private Integer id;
  20. private Integer zid;
  21. private String type;
  22. private Integer houseId;
  23. private String houseName;
  24. private Integer warehouseId;
  25. private String warehouseName;
  26. private Date createTime;
  27. private Integer orgId;
  28. private Integer grainKind;
  29. private Integer grainDetailKind;
  30. private Integer grainGrade;
  31. private Integer grainAttribute;
  32. private Integer grainAnnual;
  33. private Integer grainProducingArea;
  34. private String inPrice;
  35. private String inCount;
  36. private String inDetailTotalPrice;
  37. @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  38. private Date inputTime;
  39. private Integer state;
  40. private Integer productiveYear;
  41. private String remainingNumber;
  42. private String outPrice;
  43. private String outCount;
  44. private String outDetailTotalPrice;
  45. private String outRemainingNumber;
  46. private String jstzdId;
  47. public String getJstzdId() {
  48. return jstzdId;
  49. }
  50. public void setJstzdId(String jstzdId) {
  51. this.jstzdId = jstzdId;
  52. }
  53. // 业务字段
  54. private String planRemainingNumber;
  55. private String planOutRemainingNumber;
  56. private boolean checked;
  57. private String noticeNumber;
  58. private String crktype;
  59. private String contractNumber;
  60. private String ywtype;
  61. // private Date outgoingPeriod;
  62. private String outgoingPeriod;
  63. private String forwardingUnit;
  64. private String receiveUnit;
  65. private String resion;
  66. private Integer wareHouseId;
  67. private String count;
  68. private Integer inApplication;
  69. private boolean selected;
  70. private Date receiveTime;
  71. private int expiredOrNot;//是否超过出入库期限 1是0否
  72. private String outboundExpirationDate;//出库期限(区间)
  73. private String lsxzzbdh;
  74. private String lssl;
  75. private Integer hzqlsxzdm;
  76. @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  77. private Date hzrq;
  78. private String ccshr;
  79. private String zjshr;
  80. private String tjshr;
  81. private String kjshr;
  82. private String ldshr;
  83. private String bz;
  84. private Integer auditState;
  85. private Integer isNotice;
  86. private String pzmc;
  87. private Integer isSheet;
  88. public Integer getIsSheet() {
  89. return isSheet;
  90. }
  91. public void setIsSheet(Integer isSheet) {
  92. this.isSheet = isSheet;
  93. }
  94. public String getPzmc() {
  95. return pzmc;
  96. }
  97. public void setPzmc(String pzmc) {
  98. this.pzmc = pzmc;
  99. }
  100. public String getLsxzzbdh() {
  101. return lsxzzbdh;
  102. }
  103. public void setLsxzzbdh(String lsxzzbdh) {
  104. this.lsxzzbdh = lsxzzbdh;
  105. }
  106. public String getLssl() {
  107. return lssl;
  108. }
  109. public void setLssl(String lssl) {
  110. this.lssl = lssl;
  111. }
  112. public Integer getHzqlsxzdm() {
  113. return hzqlsxzdm;
  114. }
  115. public void setHzqlsxzdm(Integer hzqlsxzdm) {
  116. this.hzqlsxzdm = hzqlsxzdm;
  117. }
  118. public Date getHzrq() {
  119. return hzrq;
  120. }
  121. public void setHzrq(Date hzrq) {
  122. this.hzrq = hzrq;
  123. }
  124. public String getCcshr() {
  125. return ccshr;
  126. }
  127. public void setCcshr(String ccshr) {
  128. this.ccshr = ccshr;
  129. }
  130. public String getZjshr() {
  131. return zjshr;
  132. }
  133. public void setZjshr(String zjshr) {
  134. this.zjshr = zjshr;
  135. }
  136. public String getTjshr() {
  137. return tjshr;
  138. }
  139. public void setTjshr(String tjshr) {
  140. this.tjshr = tjshr;
  141. }
  142. public String getKjshr() {
  143. return kjshr;
  144. }
  145. public void setKjshr(String kjshr) {
  146. this.kjshr = kjshr;
  147. }
  148. public String getLdshr() {
  149. return ldshr;
  150. }
  151. public void setLdshr(String ldshr) {
  152. this.ldshr = ldshr;
  153. }
  154. public String getBz() {
  155. return bz;
  156. }
  157. public void setBz(String bz) {
  158. this.bz = bz;
  159. }
  160. public Integer getAuditState() {
  161. return auditState;
  162. }
  163. public void setAuditState(Integer auditState) {
  164. this.auditState = auditState;
  165. }
  166. public Integer getIsNotice() {
  167. return isNotice;
  168. }
  169. public void setIsNotice(Integer isNotice) {
  170. this.isNotice = isNotice;
  171. }
  172. public String getOutboundExpirationDate() {
  173. return outboundExpirationDate;
  174. }
  175. public void setOutboundExpirationDate(String outboundExpirationDate) {
  176. this.outboundExpirationDate = outboundExpirationDate;
  177. }
  178. public int getExpiredOrNot() {
  179. return expiredOrNot;
  180. }
  181. public void setExpiredOrNot(int expiredOrNot) {
  182. this.expiredOrNot = expiredOrNot;
  183. }
  184. public Date getReceiveTime() {
  185. return receiveTime;
  186. }
  187. public void setReceiveTime(Date receiveTime) {
  188. this.receiveTime = receiveTime;
  189. }
  190. public boolean isSelected() {
  191. return selected;
  192. }
  193. public void setSelected(boolean selected) {
  194. this.selected = selected;
  195. }
  196. public Integer getInApplication() {
  197. return inApplication;
  198. }
  199. public void setInApplication(Integer inApplication) {
  200. this.inApplication = inApplication;
  201. }
  202. public String getCount() {
  203. return count;
  204. }
  205. public void setCount(String count) {
  206. this.count = count;
  207. }
  208. public Integer getWareHouseId() {
  209. return wareHouseId;
  210. }
  211. public void setWareHouseId(Integer wareHouseId) {
  212. this.wareHouseId = wareHouseId;
  213. }
  214. public String getNoticeNumber() {
  215. return noticeNumber;
  216. }
  217. public void setNoticeNumber(String noticeNumber) {
  218. this.noticeNumber = noticeNumber;
  219. }
  220. public String getCrktype() {
  221. return crktype;
  222. }
  223. public void setCrktype(String crktype) {
  224. this.crktype = crktype;
  225. }
  226. public String getContractNumber() {
  227. return contractNumber;
  228. }
  229. public void setContractNumber(String contractNumber) {
  230. this.contractNumber = contractNumber;
  231. }
  232. public String getYwtype() {
  233. return ywtype;
  234. }
  235. public void setYwtype(String ywtype) {
  236. this.ywtype = ywtype;
  237. }
  238. /*public Date getOutgoingPeriod() {
  239. return outgoingPeriod;
  240. }
  241. public void setOutgoingPeriod(Date outgoingPeriod) {
  242. this.outgoingPeriod = outgoingPeriod;
  243. }*/
  244. public String getOutgoingPeriod() {
  245. return outgoingPeriod;
  246. }
  247. public void setOutgoingPeriod(String outgoingPeriod) {
  248. this.outgoingPeriod = outgoingPeriod;
  249. }
  250. public String getForwardingUnit() {
  251. return forwardingUnit;
  252. }
  253. public void setForwardingUnit(String forwardingUnit) {
  254. this.forwardingUnit = forwardingUnit;
  255. }
  256. public String getReceiveUnit() {
  257. return receiveUnit;
  258. }
  259. public void setReceiveUnit(String receiveUnit) {
  260. this.receiveUnit = receiveUnit;
  261. }
  262. public String getResion() {
  263. return resion;
  264. }
  265. public void setResion(String resion) {
  266. this.resion = resion;
  267. }
  268. public boolean isChecked() {
  269. return checked;
  270. }
  271. public void setChecked(boolean checked) {
  272. this.checked = checked;
  273. }
  274. public String getPlanOutRemainingNumber() {
  275. return planOutRemainingNumber;
  276. }
  277. public void setPlanOutRemainingNumber(String planOutRemainingNumber) {
  278. this.planOutRemainingNumber = planOutRemainingNumber;
  279. }
  280. public String getPlanRemainingNumber() {
  281. return planRemainingNumber;
  282. }
  283. public void setPlanRemainingNumber(String planRemainingNumber) {
  284. this.planRemainingNumber = planRemainingNumber;
  285. }
  286. /**
  287. * 计划合同通知单明细表
  288. * @return id 计划合同通知单明细表
  289. */
  290. public Integer getId() {
  291. return id;
  292. }
  293. /**
  294. * 计划合同通知单明细表
  295. * @param id 计划合同通知单明细表
  296. */
  297. public void setId(Integer id) {
  298. this.id = id;
  299. }
  300. /**
  301. * 出入库通知单表id
  302. * @return zid 出入库通知单表id
  303. */
  304. public Integer getZid() {
  305. return zid;
  306. }
  307. /**
  308. * 出入库通知单表id
  309. * @param zid 出入库通知单表id
  310. */
  311. public void setZid(Integer zid) {
  312. this.zid = zid;
  313. }
  314. /**
  315. * 类型 plan(计划) contract(合同) notice(通知单)
  316. * @return type 类型 plan(计划) contract(合同) notice(通知单)
  317. */
  318. public String getType() {
  319. return type;
  320. }
  321. /**
  322. * 类型 plan(计划) contract(合同) notice(通知单)
  323. * @param type 类型 plan(计划) contract(合同) notice(通知单)
  324. */
  325. public void setType(String type) {
  326. this.type = type == null ? null : type.trim();
  327. }
  328. /**
  329. * 仓房id
  330. * @return house_id 仓房id
  331. */
  332. public Integer getHouseId() {
  333. return houseId;
  334. }
  335. /**
  336. * 仓房id
  337. * @param houseId 仓房id
  338. */
  339. public void setHouseId(Integer houseId) {
  340. this.houseId = houseId;
  341. }
  342. /**
  343. * 仓房名称
  344. * @return house_name 仓房名称
  345. */
  346. public String getHouseName() {
  347. return houseName;
  348. }
  349. /**
  350. * 仓房名称
  351. * @param houseName 仓房名称
  352. */
  353. public void setHouseName(String houseName) {
  354. this.houseName = houseName == null ? null : houseName.trim();
  355. }
  356. /**
  357. * 货位id
  358. * @return warehouse_id 货位id
  359. */
  360. public Integer getWarehouseId() {
  361. return warehouseId;
  362. }
  363. /**
  364. * 货位id
  365. * @param warehouseId 货位id
  366. */
  367. public void setWarehouseId(Integer warehouseId) {
  368. this.warehouseId = warehouseId;
  369. }
  370. /**
  371. * 货位名称
  372. * @return warehouse_name 货位名称
  373. */
  374. public String getWarehouseName() {
  375. return warehouseName;
  376. }
  377. /**
  378. * 货位名称
  379. * @param warehouseName 货位名称
  380. */
  381. public void setWarehouseName(String warehouseName) {
  382. this.warehouseName = warehouseName == null ? null : warehouseName.trim();
  383. }
  384. /**
  385. * 创建时间
  386. * @return create_time 创建时间
  387. */
  388. public Date getCreateTime() {
  389. return createTime;
  390. }
  391. /**
  392. * 创建时间
  393. * @param createTime 创建时间
  394. */
  395. public void setCreateTime(Date createTime) {
  396. this.createTime = createTime;
  397. }
  398. /**
  399. * 承储库点
  400. * @return org_id 承储库点
  401. */
  402. public Integer getOrgId() {
  403. return orgId;
  404. }
  405. /**
  406. * 承储库点
  407. * @param orgId 承储库点
  408. */
  409. public void setOrgId(Integer orgId) {
  410. this.orgId = orgId;
  411. }
  412. /**
  413. * 粮油品种
  414. * @return grain_kind 粮油品种
  415. */
  416. public Integer getGrainKind() {
  417. return grainKind;
  418. }
  419. /**
  420. * 粮油品种
  421. * @param grainKind 粮油品种
  422. */
  423. public void setGrainKind(Integer grainKind) {
  424. this.grainKind = grainKind;
  425. }
  426. /**
  427. * 明细品种
  428. * @return grain_detail_kind 明细品种
  429. */
  430. public Integer getGrainDetailKind() {
  431. return grainDetailKind;
  432. }
  433. /**
  434. * 明细品种
  435. * @param grainDetailKind 明细品种
  436. */
  437. public void setGrainDetailKind(Integer grainDetailKind) {
  438. this.grainDetailKind = grainDetailKind;
  439. }
  440. /**
  441. * 粮油等级
  442. * @return grain_grade 粮油等级
  443. */
  444. public Integer getGrainGrade() {
  445. return grainGrade;
  446. }
  447. /**
  448. * 粮油等级
  449. * @param grainGrade 粮油等级
  450. */
  451. public void setGrainGrade(Integer grainGrade) {
  452. this.grainGrade = grainGrade;
  453. }
  454. /**
  455. * 粮油性质
  456. * @return grain_attribute 粮油性质
  457. */
  458. public Integer getGrainAttribute() {
  459. return grainAttribute;
  460. }
  461. /**
  462. * 粮油性质
  463. * @param grainAttribute 粮油性质
  464. */
  465. public void setGrainAttribute(Integer grainAttribute) {
  466. this.grainAttribute = grainAttribute;
  467. }
  468. /**
  469. * 收获年度
  470. * @return grain_annual 收获年度
  471. */
  472. public Integer getGrainAnnual() {
  473. return grainAnnual;
  474. }
  475. /**
  476. * 收获年度
  477. * @param grainAnnual 收获年度
  478. */
  479. public void setGrainAnnual(Integer grainAnnual) {
  480. this.grainAnnual = grainAnnual;
  481. }
  482. /**
  483. * 粮油产地
  484. * @return grain_producing_area 粮油产地
  485. */
  486. public Integer getGrainProducingArea() {
  487. return grainProducingArea;
  488. }
  489. /**
  490. * 粮油产地
  491. * @param grainProducingArea 粮油产地
  492. */
  493. public void setGrainProducingArea(Integer grainProducingArea) {
  494. this.grainProducingArea = grainProducingArea;
  495. }
  496. /**
  497. * 轮入单价
  498. * @return in_price 轮入单价
  499. */
  500. public String getInPrice() {
  501. return inPrice;
  502. }
  503. /**
  504. * 轮入单价
  505. * @param inPrice 轮入单价
  506. */
  507. public void setInPrice(String inPrice) {
  508. this.inPrice = inPrice == null ? null : inPrice.trim();
  509. }
  510. /**
  511. * 轮入数量
  512. * @return in_count 轮入数量
  513. */
  514. public String getInCount() {
  515. return inCount;
  516. }
  517. /**
  518. * 轮入数量
  519. * @param inCount 轮入数量
  520. */
  521. public void setInCount(String inCount) {
  522. this.inCount = inCount == null ? null : inCount.trim();
  523. }
  524. /**
  525. * 轮入总价
  526. * @return in_detail_total_price 轮入总价
  527. */
  528. public String getInDetailTotalPrice() {
  529. return inDetailTotalPrice;
  530. }
  531. /**
  532. * 轮入总价
  533. * @param inDetailTotalPrice 轮入总价
  534. */
  535. public void setInDetailTotalPrice(String inDetailTotalPrice) {
  536. this.inDetailTotalPrice = inDetailTotalPrice == null ? null : inDetailTotalPrice.trim();
  537. }
  538. /**
  539. * 入库时间
  540. * @return input_time 入库时间
  541. */
  542. public Date getInputTime() {
  543. return inputTime;
  544. }
  545. /**
  546. * 入库时间
  547. * @param inputTime 入库时间
  548. */
  549. public void setInputTime(Date inputTime) {
  550. this.inputTime = inputTime;
  551. }
  552. /**
  553. * 轮换计划(0:轮入,1:轮出)
  554. * @return state 轮换计划(0:轮入,1:轮出)
  555. */
  556. public Integer getState() {
  557. return state;
  558. }
  559. /**
  560. * 轮换计划(0:轮入,1:轮出)
  561. * @param state 轮换计划(0:轮入,1:轮出)
  562. */
  563. public void setState(Integer state) {
  564. this.state = state;
  565. }
  566. /**
  567. * 生产年份
  568. * @return productive_year 生产年份
  569. */
  570. public Integer getProductiveYear() {
  571. return productiveYear;
  572. }
  573. /**
  574. * 生产年份
  575. * @param productiveYear 生产年份
  576. */
  577. public void setProductiveYear(Integer productiveYear) {
  578. this.productiveYear = productiveYear;
  579. }
  580. /**
  581. * 轮入剩余数量
  582. * @return remaining_number 轮入剩余数量
  583. */
  584. public String getRemainingNumber() {
  585. return remainingNumber;
  586. }
  587. /**
  588. * 轮入剩余数量
  589. * @param remainingNumber 轮入剩余数量
  590. */
  591. public void setRemainingNumber(String remainingNumber) {
  592. this.remainingNumber = remainingNumber == null ? null : remainingNumber.trim();
  593. }
  594. /**
  595. * 轮出单价
  596. * @return out_price 轮出单价
  597. */
  598. public String getOutPrice() {
  599. return outPrice;
  600. }
  601. /**
  602. * 轮出单价
  603. * @param outPrice 轮出单价
  604. */
  605. public void setOutPrice(String outPrice) {
  606. this.outPrice = outPrice == null ? null : outPrice.trim();
  607. }
  608. /**
  609. * 轮出数量
  610. * @return out_count 轮出数量
  611. */
  612. public String getOutCount() {
  613. return outCount;
  614. }
  615. /**
  616. * 轮出数量
  617. * @param outCount 轮出数量
  618. */
  619. public void setOutCount(String outCount) {
  620. this.outCount = outCount == null ? null : outCount.trim();
  621. }
  622. /**
  623. * 轮出总价
  624. * @return out_detail_total_price 轮出总价
  625. */
  626. public String getOutDetailTotalPrice() {
  627. return outDetailTotalPrice;
  628. }
  629. /**
  630. * 轮出总价
  631. * @param outDetailTotalPrice 轮出总价
  632. */
  633. public void setOutDetailTotalPrice(String outDetailTotalPrice) {
  634. this.outDetailTotalPrice = outDetailTotalPrice == null ? null : outDetailTotalPrice.trim();
  635. }
  636. /**
  637. * 轮出剩余数量
  638. * @return out_remaining_number 轮出剩余数量
  639. */
  640. public String getOutRemainingNumber() {
  641. return outRemainingNumber;
  642. }
  643. /**
  644. * 轮出剩余数量
  645. * @param outRemainingNumber 轮出剩余数量
  646. */
  647. public void setOutRemainingNumber(String outRemainingNumber) {
  648. this.outRemainingNumber = outRemainingNumber == null ? null : outRemainingNumber.trim();
  649. }
  650. }