客户组

This commit is contained in:
‘huanghaiixia’
2025-12-17 16:06:44 +08:00
parent 1eee4dcd60
commit a27bf90e9d
16 changed files with 2773 additions and 615 deletions

View File

@ -0,0 +1,226 @@
import { BasicPageParams, BasicFetchResult } from '/@/api/model/baseModel';
/**
* @description: LngSupplier分页参数 模型
*/
export interface LngSupplierPageParams extends BasicPageParams {
suName: string;
suSname: string;
natureCode: string;
typeCode: string;
classCode: string;
dI: string;
valid: string;
approCode: string;
}
/**
* @description: LngSupplier分页返回值模型
*/
export interface LngSupplierPageModel {
id: string;
suName: string;
suSname: string;
natureCode: string;
typeCode: string;
classCode: string;
dI: string;
valid: string;
approCode: string;
}
/**
* @description: LngSupplier表类型
*/
export interface LngSupplierModel {
id: number;
suMcode: string;
suCode: string;
suName: string;
suSname: string;
dI: string;
natureCode: string;
parentName: string;
creditNo: string;
tiNo: string;
representative: string;
amtReg: string;
addrReg: string;
addrMail: string;
dateEstab: string;
dateEntry: string;
classCode: string;
typeCode: string;
orgCode: string;
valid: string;
approCode: string;
note: string;
createUserId: number;
createDate: string;
modifyUserId: number;
modifyDate: string;
tenantId: number;
deptId: number;
ruleUserId: number;
lngSupplierBankList?: LngSupplierBankModel;
lngSupplierContactList?: LngSupplierContactModel;
lngSupplierDocList?: LngSupplierDocModel;
}
/**
* @description: LngSupplierBank表类型
*/
export interface LngSupplierBankModel {
id: number;
suCode: string;
bankCode: string;
accountName: string;
account: string;
defaultSign: string;
note: string;
createUserId: number;
createDate: string;
modifyUserId: number;
modifyDate: string;
tenantId: number;
deptId: number;
ruleUserId: number;
}
/**
* @description: LngSupplierContact表类型
*/
export interface LngSupplierContactModel {
id: number;
suCode: string;
contactName: string;
tel: string;
addrMail: string;
email: string;
position: string;
valid: string;
note: string;
createUserId: number;
createDate: string;
modifyUserId: number;
modifyDate: string;
tenantId: number;
deptId: number;
ruleUserId: number;
}
/**
* @description: LngSupplierDoc表类型
*/
export interface LngSupplierDocModel {
id: number;
suCode: string;
docTypeCode: string;
docNo: string;
dateFrom: string;
dateTo: string;
sort: number;
valid: string;
note: string;
createUserId: number;
createDate: string;
modifyUserId: number;
modifyDate: string;
tenantId: number;
deptId: number;
ruleUserId: number;
}
/**
* @description: LngSupplier分页返回值结构
*/
export type LngSupplierPageResult = BasicFetchResult<LngSupplierPageModel>;