master
Joe 2 years ago
parent 6749d54303
commit d73a965437

@ -198,6 +198,7 @@ const Detail: React.FC<any> = () => {
pbcBusinessHeadUserNo: info.pbcBusinessHeadUserNo,
pbcBusinessStartDate: info.pbcBusinessStartDate,
pbcBusinessBank: info.pbcBusinessBank,
pbcBusinessAccountName: info.pbcBusinessAccountName,
pbcBusinessAccount: info.pbcBusinessAccount,
pbcBusinessMainCategory: info.pbcBusinessMainCategory,
pbcBusinessLicenseUrl: info.pbcBusinessLicenseUrl
@ -274,10 +275,14 @@ const Detail: React.FC<any> = () => {
key: 'pbcBusinessBank',
dataIndex: 'pbcBusinessBank',
},
{
title: '商户账户名称',
key: 'pbcBusinessAccountName',
dataIndex: 'pbcBusinessAccountName',
},
{
title: '收款账号',
key: 'pbcBusinessAccount',
span: 2,
dataIndex: 'pbcBusinessAccount',
},
{

@ -60,6 +60,11 @@ const TableList: React.FC<{}> = () => {
title: '商户手机号',
dataIndex: 'pbcBusinessContactMobile',
},
{
title: '商户账户名称',
dataIndex: 'pbcBusinessAccountName',
search: false
},
{
title: '商户类别',
dataIndex: 'pbcBusinessType',

@ -2,41 +2,41 @@
/* eslint-disable */
import request from '@/utils/request';
/** error GET /error */
export async function errorUsingGet(options?: { [key: string]: any }) {
return request<Record<string, any>>('/error', {
/** errorHtml GET /error */
export async function errorHtmlUsingGet(options?: { [key: string]: any }) {
return request<API.ModelAndView>('/error', {
method: 'GET',
...(options || {}),
});
}
/** error PUT /error */
export async function errorUsingPut(options?: { [key: string]: any }) {
return request<Record<string, any>>('/error', {
/** errorHtml PUT /error */
export async function errorHtmlUsingPut(options?: { [key: string]: any }) {
return request<API.ModelAndView>('/error', {
method: 'PUT',
...(options || {}),
});
}
/** error POST /error */
export async function errorUsingPost(options?: { [key: string]: any }) {
return request<Record<string, any>>('/error', {
/** errorHtml POST /error */
export async function errorHtmlUsingPost(options?: { [key: string]: any }) {
return request<API.ModelAndView>('/error', {
method: 'POST',
...(options || {}),
});
}
/** error DELETE /error */
export async function errorUsingDelete(options?: { [key: string]: any }) {
return request<Record<string, any>>('/error', {
/** errorHtml DELETE /error */
export async function errorHtmlUsingDelete(options?: { [key: string]: any }) {
return request<API.ModelAndView>('/error', {
method: 'DELETE',
...(options || {}),
});
}
/** error PATCH /error */
export async function errorUsingPatch(options?: { [key: string]: any }) {
return request<Record<string, any>>('/error', {
/** errorHtml PATCH /error */
export async function errorHtmlUsingPatch(options?: { [key: string]: any }) {
return request<API.ModelAndView>('/error', {
method: 'PATCH',
...(options || {}),
});

@ -757,6 +757,8 @@ declare namespace API {
type PbcBusiness = {
/** 商户对公账户 */
pbcBusinessAccount?: string;
/** 商户账户名称 */
pbcBusinessAccountName?: string;
/** 商户地址 */
pbcBusinessAddress?: string;
/** 商户区域 */
@ -830,6 +832,8 @@ declare namespace API {
type PbcBusinessApproval = {
/** 商户对公账户 */
pbcBusinessAccount?: string;
/** 商户账户名称 */
pbcBusinessAccountName?: string;
/** 商户详细地址 */
pbcBusinessAddress?: string;
/** 商户申请认证审批不通过原因 */
@ -903,6 +907,8 @@ declare namespace API {
code?: string;
/** 商户对公账户 */
pbcBusinessAccount?: string;
/** 商户账户名称 */
pbcBusinessAccountName?: string;
/** 商户详细地址 */
pbcBusinessAddress?: string;
/** 商户申请认证审批不通过原因 */
@ -976,6 +982,8 @@ declare namespace API {
type PbcBusinessFrontChangeVO = {
/** 商户对公账户 */
pbcBusinessAccount?: string;
/** 商户账户名称 */
pbcBusinessAccountName?: string;
/** 商户地址 */
pbcBusinessAddress?: string;
/** 商户区域 */
@ -1903,7 +1911,7 @@ declare namespace API {
pbcCreateBy?: number;
/** 创建人 */
pbcCreateByUserName?: string;
/** 主键 */
/** 主键,前端无需传 */
pbcId?: number;
/** 留言内容,必须 */
pbcMessage?: string;
@ -1927,6 +1935,10 @@ declare namespace API {
pbcUpdateBy?: number;
/** 更新人 */
pbcUpdateByUserName?: string;
/** 用户id前端无需传 */
pbcUserId?: number;
/** 0表示商户1表示会员, 2管理员前端无需传 */
pbcUserType?: number;
};
type PbcUserMessageVO = {

Loading…
Cancel
Save