BpOrderCirculation.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package com.caimei.modules.bulkpurchase.entity;
  2. import com.thinkgem.jeesite.common.persistence.DataEntity;
  3. /**
  4. * .订单传阅
  5. *
  6. * @author ZCP
  7. * @version 2017-08-03
  8. **/
  9. public class BpOrderCirculation extends DataEntity<BpOrderCirculation> {
  10. private static final long serialVersionUID = 1L;
  11. private Long userId; // userId
  12. private String buyerRole; //买家订单传阅
  13. private String shopRole; //供应商订单传阅
  14. private String addTime; // 添加时间
  15. private String updateTime; // 修改时间
  16. private String mobile; //手机号码
  17. private String userName; //用户名
  18. private String userTypeName; //用户类型名称
  19. private String userType;//
  20. public Long getUserId() {
  21. return userId;
  22. }
  23. public void setUserId(Long userId) {
  24. this.userId = userId;
  25. }
  26. public String getAddTime() {
  27. return addTime;
  28. }
  29. public void setAddTime(String addTime) {
  30. this.addTime = addTime;
  31. }
  32. public String getMobile() {
  33. return mobile;
  34. }
  35. public void setMobile(String mobile) {
  36. this.mobile = mobile;
  37. }
  38. public String getUserName() {
  39. return userName;
  40. }
  41. public void setUserName(String userName) {
  42. this.userName = userName;
  43. }
  44. public String getUserTypeName() {
  45. return userTypeName;
  46. }
  47. public void setUserTypeName(String userTypeName) {
  48. this.userTypeName = userTypeName;
  49. }
  50. public String getBuyerRole() {
  51. return buyerRole;
  52. }
  53. public void setBuyerRole(String buyerRole) {
  54. this.buyerRole = buyerRole;
  55. }
  56. public String getShopRole() {
  57. return shopRole;
  58. }
  59. public void setShopRole(String shopRole) {
  60. this.shopRole = shopRole;
  61. }
  62. public String getUpdateTime() {
  63. return updateTime;
  64. }
  65. public void setUpdateTime(String updateTime) {
  66. this.updateTime = updateTime;
  67. }
  68. public String getUserType() {
  69. return userType;
  70. }
  71. public void setUserType(String userType) {
  72. this.userType = userType;
  73. }
  74. }