BusinessAgentBgmxz.java 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. package com.chinaitop.depot.agent.bgz.model;
  2. import java.math.BigDecimal;
  3. import java.util.Date;
  4. public class BusinessAgentBgmxz {
  5. private Integer id;
  6. private Integer orgId;
  7. private Integer agentId;
  8. private Integer szlkOrgId;
  9. private Integer houseId;
  10. private Integer wareId;
  11. private Integer lspz;
  12. private Integer lsxz;
  13. private Integer lsdj;
  14. private Date fssj;
  15. private BigDecimal srsl;
  16. private BigDecimal zcsl;
  17. private BigDecimal kcsl;
  18. private Integer lqgsOrgId;
  19. private Integer isJz;
  20. private Integer sjly;
  21. private String createPerson;
  22. private Date createDate;
  23. private Date updatetime;
  24. /**
  25. * 主键
  26. * @return id 主键
  27. */
  28. public Integer getId() {
  29. return id;
  30. }
  31. /**
  32. * 主键
  33. * @param id 主键
  34. */
  35. public void setId(Integer id) {
  36. this.id = id;
  37. }
  38. /**
  39. * 单位ID
  40. * @return org_id 单位ID
  41. */
  42. public Integer getOrgId() {
  43. return orgId;
  44. }
  45. /**
  46. * 单位ID
  47. * @param orgId 单位ID
  48. */
  49. public void setOrgId(Integer orgId) {
  50. this.orgId = orgId;
  51. }
  52. /**
  53. * 代储库点ID
  54. * @return agent_id 代储库点ID
  55. */
  56. public Integer getAgentId() {
  57. return agentId;
  58. }
  59. /**
  60. * 代储库点ID
  61. * @param agentId 代储库点ID
  62. */
  63. public void setAgentId(Integer agentId) {
  64. this.agentId = agentId;
  65. }
  66. /**
  67. * 代储粮库单位ID
  68. * @return szlk_org_id 代储粮库单位ID
  69. */
  70. public Integer getSzlkOrgId() {
  71. return szlkOrgId;
  72. }
  73. /**
  74. * 代储粮库单位ID
  75. * @param szlkOrgId 代储粮库单位ID
  76. */
  77. public void setSzlkOrgId(Integer szlkOrgId) {
  78. this.szlkOrgId = szlkOrgId;
  79. }
  80. /**
  81. * 仓房ID
  82. * @return house_id 仓房ID
  83. */
  84. public Integer getHouseId() {
  85. return houseId;
  86. }
  87. /**
  88. * 仓房ID
  89. * @param houseId 仓房ID
  90. */
  91. public void setHouseId(Integer houseId) {
  92. this.houseId = houseId;
  93. }
  94. /**
  95. * 货位ID
  96. * @return ware_id 货位ID
  97. */
  98. public Integer getWareId() {
  99. return wareId;
  100. }
  101. /**
  102. * 货位ID
  103. * @param wareId 货位ID
  104. */
  105. public void setWareId(Integer wareId) {
  106. this.wareId = wareId;
  107. }
  108. /**
  109. * 粮食品种
  110. * @return lspz 粮食品种
  111. */
  112. public Integer getLspz() {
  113. return lspz;
  114. }
  115. /**
  116. * 粮食品种
  117. * @param lspz 粮食品种
  118. */
  119. public void setLspz(Integer lspz) {
  120. this.lspz = lspz;
  121. }
  122. /**
  123. * 粮食性质
  124. * @return lsxz 粮食性质
  125. */
  126. public Integer getLsxz() {
  127. return lsxz;
  128. }
  129. /**
  130. * 粮食性质
  131. * @param lsxz 粮食性质
  132. */
  133. public void setLsxz(Integer lsxz) {
  134. this.lsxz = lsxz;
  135. }
  136. /**
  137. * 粮食等级
  138. * @return lsdj 粮食等级
  139. */
  140. public Integer getLsdj() {
  141. return lsdj;
  142. }
  143. /**
  144. * 粮食等级
  145. * @param lsdj 粮食等级
  146. */
  147. public void setLsdj(Integer lsdj) {
  148. this.lsdj = lsdj;
  149. }
  150. /**
  151. * 业务发生时间
  152. * @return fssj 业务发生时间
  153. */
  154. public Date getFssj() {
  155. return fssj;
  156. }
  157. /**
  158. * 业务发生时间
  159. * @param fssj 业务发生时间
  160. */
  161. public void setFssj(Date fssj) {
  162. this.fssj = fssj;
  163. }
  164. /**
  165. * 收入数量
  166. * @return srsl 收入数量
  167. */
  168. public BigDecimal getSrsl() {
  169. return srsl;
  170. }
  171. /**
  172. * 收入数量
  173. * @param srsl 收入数量
  174. */
  175. public void setSrsl(BigDecimal srsl) {
  176. this.srsl = srsl;
  177. }
  178. /**
  179. * 支出数量
  180. * @return zcsl 支出数量
  181. */
  182. public BigDecimal getZcsl() {
  183. return zcsl;
  184. }
  185. /**
  186. * 支出数量
  187. * @param zcsl 支出数量
  188. */
  189. public void setZcsl(BigDecimal zcsl) {
  190. this.zcsl = zcsl;
  191. }
  192. /**
  193. * 库存数量
  194. * @return kcsl 库存数量
  195. */
  196. public BigDecimal getKcsl() {
  197. return kcsl;
  198. }
  199. /**
  200. * 库存数量
  201. * @param kcsl 库存数量
  202. */
  203. public void setKcsl(BigDecimal kcsl) {
  204. this.kcsl = kcsl;
  205. }
  206. /**
  207. * 粮权所属单位ID
  208. * @return lqgs_org_id 粮权所属单位ID
  209. */
  210. public Integer getLqgsOrgId() {
  211. return lqgsOrgId;
  212. }
  213. /**
  214. * 粮权所属单位ID
  215. * @param lqgsOrgId 粮权所属单位ID
  216. */
  217. public void setLqgsOrgId(Integer lqgsOrgId) {
  218. this.lqgsOrgId = lqgsOrgId;
  219. }
  220. /**
  221. * 是否记账
  222. * @return is_jz 是否记账
  223. */
  224. public Integer getIsJz() {
  225. return isJz;
  226. }
  227. /**
  228. * 是否记账
  229. * @param isJz 是否记账
  230. */
  231. public void setIsJz(Integer isJz) {
  232. this.isJz = isJz;
  233. }
  234. /**
  235. * 数据来源,0手动插入,1同步插入
  236. * @return sjly 数据来源,0手动插入,1同步插入
  237. */
  238. public Integer getSjly() {
  239. return sjly;
  240. }
  241. /**
  242. * 数据来源,0手动插入,1同步插入
  243. * @param sjly 数据来源,0手动插入,1同步插入
  244. */
  245. public void setSjly(Integer sjly) {
  246. this.sjly = sjly;
  247. }
  248. /**
  249. * 创建人
  250. * @return create_person 创建人
  251. */
  252. public String getCreatePerson() {
  253. return createPerson;
  254. }
  255. /**
  256. * 创建人
  257. * @param createPerson 创建人
  258. */
  259. public void setCreatePerson(String createPerson) {
  260. this.createPerson = createPerson == null ? null : createPerson.trim();
  261. }
  262. /**
  263. * 创建时间
  264. * @return create_date 创建时间
  265. */
  266. public Date getCreateDate() {
  267. return createDate;
  268. }
  269. /**
  270. * 创建时间
  271. * @param createDate 创建时间
  272. */
  273. public void setCreateDate(Date createDate) {
  274. this.createDate = createDate;
  275. }
  276. /**
  277. *
  278. * @return updatetime
  279. */
  280. public Date getUpdatetime() {
  281. return updatetime;
  282. }
  283. /**
  284. *
  285. * @param updatetime
  286. */
  287. public void setUpdatetime(Date updatetime) {
  288. this.updatetime = updatetime;
  289. }
  290. //后加属性
  291. private String agentName;
  292. private String agentDepotName;
  293. private String houseName;
  294. private String wareName;
  295. public String getAgentName() {
  296. return agentName;
  297. }
  298. public void setAgentName(String agentName) {
  299. this.agentName = agentName;
  300. }
  301. public String getAgentDepotName() {
  302. return agentDepotName;
  303. }
  304. public void setAgentDepotName(String agentDepotName) {
  305. this.agentDepotName = agentDepotName;
  306. }
  307. public String getHouseName() {
  308. return houseName;
  309. }
  310. public void setHouseName(String houseName) {
  311. this.houseName = houseName;
  312. }
  313. public String getWareName() {
  314. return wareName;
  315. }
  316. public void setWareName(String wareName) {
  317. this.wareName = wareName;
  318. }
  319. }