|
|
|
@@ -50,8 +50,8 @@ public class WxMerchantBUser implements Serializable { |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "B端用户手机号", name = "phone") |
|
|
|
private String phone; |
|
|
|
/***/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "", name = "bUserPwd") |
|
|
|
private String bUserPwd; |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "", name = "userPwd") |
|
|
|
private String userPwd; |
|
|
|
/*商户id**/ |
|
|
|
@io.swagger.annotations.ApiModelProperty(value = "商户id", name = "merchantId") |
|
|
|
private Long merchantId; |
|
|
|
@@ -159,19 +159,19 @@ public class WxMerchantBUser implements Serializable { |
|
|
|
this.status = status; |
|
|
|
} |
|
|
|
|
|
|
|
public String getbUserPwd() { |
|
|
|
return bUserPwd; |
|
|
|
public String getUserPwd() { |
|
|
|
return userPwd; |
|
|
|
} |
|
|
|
|
|
|
|
public void setbUserPwd(String bUserPwd) { |
|
|
|
this.bUserPwd = bUserPwd; |
|
|
|
public void setUserPwd(String userPwd) { |
|
|
|
this.userPwd = userPwd; |
|
|
|
} |
|
|
|
|
|
|
|
public static enum Field { |
|
|
|
Id_ASC("`id` ASC"), Id_DESC("`id` DESC"), |
|
|
|
TenantId_ASC("`tenant_id` ASC"), TenantId_DESC("`tenant_id` DESC"), |
|
|
|
Phone_ASC("`phone` ASC"), Phone_DESC("`phone` DESC"), |
|
|
|
BUserPwd_ASC("`b_user_pwd` ASC"), BUserPwd_DESC("`b_user_pwd` DESC"), |
|
|
|
UserPwd_ASC("`user_pwd` ASC"), UserPwd_DESC("`user_pwd` DESC"), |
|
|
|
MerchantId_ASC("`merchant_id` ASC"), MerchantId_DESC("`merchant_id` DESC"), |
|
|
|
CreateDate_ASC("`create_date` ASC"), CreateDate_DESC("`create_date` DESC"), |
|
|
|
UpdateDate_ASC("`update_date` ASC"), UpdateDate_DESC("`update_date` DESC"), |
|
|
|
|