123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- package com.caimei.modules.bulkpurchase.entity;
- import com.thinkgem.jeesite.common.persistence.DataEntity;
- /**
- * .订单传阅
- *
- * @author ZCP
- * @version 2017-08-03
- **/
- public class BpOrderCirculation extends DataEntity<BpOrderCirculation> {
- private static final long serialVersionUID = 1L;
- private Long userId; // userId
- private String buyerRole; //买家订单传阅
- private String shopRole; //供应商订单传阅
- private String addTime; // 添加时间
- private String updateTime; // 修改时间
- private String mobile; //手机号码
- private String userName; //用户名
- private String userTypeName; //用户类型名称
- private String userType;//
- public Long getUserId() {
- return userId;
- }
- public void setUserId(Long userId) {
- this.userId = userId;
- }
- public String getAddTime() {
- return addTime;
- }
- public void setAddTime(String addTime) {
- this.addTime = addTime;
- }
- public String getMobile() {
- return mobile;
- }
- public void setMobile(String mobile) {
- this.mobile = mobile;
- }
- public String getUserName() {
- return userName;
- }
- public void setUserName(String userName) {
- this.userName = userName;
- }
- public String getUserTypeName() {
- return userTypeName;
- }
- public void setUserTypeName(String userTypeName) {
- this.userTypeName = userTypeName;
- }
- public String getBuyerRole() {
- return buyerRole;
- }
- public void setBuyerRole(String buyerRole) {
- this.buyerRole = buyerRole;
- }
- public String getShopRole() {
- return shopRole;
- }
- public void setShopRole(String shopRole) {
- this.shopRole = shopRole;
- }
- public String getUpdateTime() {
- return updateTime;
- }
- public void setUpdateTime(String updateTime) {
- this.updateTime = updateTime;
- }
- public String getUserType() {
- return userType;
- }
- public void setUserType(String userType) {
- this.userType = userType;
- }
- }
|