first
parent
c472019cc7
commit
b4458abf52
@ -1,210 +1,212 @@
|
|||||||
declare namespace Md {
|
declare namespace Md {
|
||||||
interface CopperBar {
|
interface CopperBar {
|
||||||
weightMeasureName: string;
|
weightMeasureName: string;
|
||||||
id: number;
|
id: number;
|
||||||
weightMeasureId: string;
|
weightMeasureId: string;
|
||||||
copperbarName: string;
|
copperbarName: string;
|
||||||
copperbarDiameter: string;
|
copperbarDiameter: string;
|
||||||
unitWeight: string;
|
unitWeight: string;
|
||||||
createBy: string;
|
createBy: string;
|
||||||
createTime: string;
|
createTime: string;
|
||||||
}
|
}
|
||||||
interface CopperBarSearch {
|
interface CopperBarSearch {
|
||||||
copperbarName: string;
|
copperbarName: string;
|
||||||
copperbarDiameter: string;
|
copperbarDiameter: string;
|
||||||
weightMeasureId: string | null;
|
weightMeasureId: string | null;
|
||||||
pageNum: number;
|
pageNum: number;
|
||||||
pageSize: number;
|
pageSize: number;
|
||||||
total: number;
|
total: number;
|
||||||
}
|
}
|
||||||
interface CopperBarAdd {
|
interface CopperBarAdd {
|
||||||
weightMeasureName: string;
|
weightMeasureName: string;
|
||||||
id?: number;
|
id?: number;
|
||||||
copperbarDiameter: string;
|
copperbarDiameter: string;
|
||||||
copperbarName: string;
|
copperbarName: string;
|
||||||
unitWeight: string;
|
unitWeight: string;
|
||||||
weightMeasureId: string | null;
|
weightMeasureId: string | null;
|
||||||
}
|
}
|
||||||
interface WorkGroupMember {
|
interface WorkGroupMember {
|
||||||
memberName: string;
|
memberName: string;
|
||||||
memberId: string;
|
memberId: string;
|
||||||
workgroupName: string;
|
workgroupName: string;
|
||||||
orkgroupCode: string;
|
orkgroupCode: string;
|
||||||
headName: string;
|
headName: string;
|
||||||
ifEnable: number;
|
ifEnable: number;
|
||||||
createTime: string;
|
createTime: string;
|
||||||
}
|
}
|
||||||
interface WorkMember {
|
interface WorkMember {
|
||||||
userId: number;
|
userId: number;
|
||||||
userName: string;
|
userName: string;
|
||||||
nickName: string;
|
nickName: string;
|
||||||
email: string;
|
email: string;
|
||||||
phonenumber: string;
|
phonenumber: string;
|
||||||
}
|
}
|
||||||
interface WorkGroupSearch {
|
interface WorkGroupSearch {
|
||||||
workgroupId?: string;
|
workgroupId?: string;
|
||||||
memberName: string;
|
memberName: string;
|
||||||
memberId: string;
|
memberId: string;
|
||||||
pageNum: number;
|
pageNum: number;
|
||||||
pageSize: number;
|
pageSize: number;
|
||||||
total: number;
|
total: number;
|
||||||
}
|
}
|
||||||
interface workUser {
|
interface workUser {
|
||||||
phonenumber: string;
|
phonenumber: string;
|
||||||
userName: string | null;
|
userName: string | null;
|
||||||
pageNum: number;
|
pageNum: number;
|
||||||
pageSize: number;
|
pageSize: number;
|
||||||
total: number | undefined;
|
total: number | undefined;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
declare namespace List {
|
declare namespace List {
|
||||||
type DataForm = {
|
type DataForm = {
|
||||||
productId: number | string | null;
|
productId: number | string | null;
|
||||||
id: number;
|
id: number;
|
||||||
processRouteId: string | null;
|
processRouteId: string | null;
|
||||||
productTypeId: string;
|
productTypeId: string;
|
||||||
productTypeName: string;
|
productTypeName: string;
|
||||||
productName: string;
|
productName: string;
|
||||||
productCode: string;
|
productCode: string;
|
||||||
productSize: string;
|
productSize: string;
|
||||||
productSizeInternational: string;
|
productSizeInternational: string;
|
||||||
numMeasureId: string;
|
numMeasureId: string;
|
||||||
weightMeasureId: string;
|
weightMeasureId: string;
|
||||||
specification: string;
|
specification: string;
|
||||||
processRouteName: string;
|
processRouteName: string;
|
||||||
numMeasureName: string;
|
numMeasureName: string;
|
||||||
weightMeasureName: string;
|
weightMeasureName: string;
|
||||||
createTime: string;
|
createTime: string;
|
||||||
remark: string;
|
remark: string;
|
||||||
ifEnable: number;
|
ifEnable: number;
|
||||||
};
|
};
|
||||||
type SearchForm = {
|
type SearchForm = {
|
||||||
productTypeId: string;
|
productTypeId: string;
|
||||||
productName: string;
|
productName: string;
|
||||||
specification: string;
|
specification: string;
|
||||||
pageNum: number;
|
pageNum: number;
|
||||||
pageSize: number;
|
pageSize: number;
|
||||||
total: number;
|
total: number;
|
||||||
};
|
};
|
||||||
type AddForm = {
|
type AddForm = {
|
||||||
processRouteName: string;
|
processRouteName: string;
|
||||||
id?: number;
|
id?: number;
|
||||||
productTypeId: string;
|
productTypeId: string;
|
||||||
productSize: string;
|
productSize: string;
|
||||||
productSizeInternational: string;
|
productSizeInternational: string;
|
||||||
specification: string;
|
specification: string;
|
||||||
processRouteId: string | null;
|
processRouteId: string | null;
|
||||||
productName: string;
|
productName: string;
|
||||||
productTypeName?: string;
|
productTypeName?: string;
|
||||||
weightMeasureId: string | null;
|
weightMeasureId: string | null;
|
||||||
weightMeasureName?: string;
|
weightMeasureName?: string;
|
||||||
remark: string;
|
remark: string;
|
||||||
ifEnable: number;
|
ifEnable: number;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
declare namespace Type {
|
declare namespace Type {
|
||||||
interface searchForm {
|
interface searchForm {
|
||||||
id: string | null;
|
id: string | null;
|
||||||
typeCode: string;
|
typeCode: string;
|
||||||
ifEnable: number | null;
|
ifEnable: number | null;
|
||||||
pageNum: number;
|
pageNum: number;
|
||||||
pageSize: number;
|
pageSize: number;
|
||||||
total: number;
|
total: number;
|
||||||
}
|
}
|
||||||
interface addForm {
|
interface addForm {
|
||||||
id?: number;
|
id?: number;
|
||||||
typeName: string;
|
typeName: string;
|
||||||
typeCode: string;
|
typeCode: string;
|
||||||
parentTypeId: number | null;
|
parentTypeId: number | null;
|
||||||
ifEnable: number;
|
ifEnable: number;
|
||||||
}
|
}
|
||||||
interface DataForm {
|
interface DataForm {
|
||||||
createBy: string;
|
createBy: string;
|
||||||
createTime: string;
|
createTime: string;
|
||||||
updateBy: string;
|
updateBy: string;
|
||||||
updateTime: string;
|
updateTime: string;
|
||||||
remark: string;
|
remark: string;
|
||||||
id: number;
|
id: number;
|
||||||
typeName: string;
|
typeName: string;
|
||||||
typeCode: string;
|
typeCode: string;
|
||||||
parentTypeId: number;
|
parentTypeId: number;
|
||||||
ancestors: string;
|
ancestors: string;
|
||||||
ifEnable: number;
|
ifEnable: number;
|
||||||
version: number;
|
version: number;
|
||||||
isDeleted: number;
|
isDeleted: number;
|
||||||
attr1: string | null;
|
attr1: string | null;
|
||||||
attr2: string | null;
|
attr2: string | null;
|
||||||
attr3: string | null;
|
attr3: string | null;
|
||||||
children?: DataForm[];
|
children?: DataForm[];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
declare namespace Item {
|
declare namespace Item {
|
||||||
interface List {
|
interface List {
|
||||||
id: number;
|
id: number;
|
||||||
itemCode: string;
|
itemCode: string;
|
||||||
itemName: string;
|
itemName: string;
|
||||||
itemTypeName: string;
|
itemTypeName: string;
|
||||||
itemTypeCode?: string;
|
itemTypeCode?: string;
|
||||||
itemTypeId: string | null | number;
|
itemTypeId: string | null | number;
|
||||||
workstageId: string | null;
|
workstageId: string | null;
|
||||||
workstageName: string;
|
workstageName: string;
|
||||||
numMeasureName: string;
|
numMeasureName: string;
|
||||||
minStock: string;
|
minStock: string;
|
||||||
maxStock: string;
|
maxStock: string;
|
||||||
createTime: string;
|
createTime: string;
|
||||||
remark: string;
|
remark: string;
|
||||||
ifEnable: number;
|
color: string,
|
||||||
attr1: string | null;
|
ifEnable: number;
|
||||||
attr2: string | null;
|
attr1: string | null;
|
||||||
attr3: string | null;
|
attr2: string | null;
|
||||||
}
|
attr3: string | null;
|
||||||
interface SearchForm {
|
}
|
||||||
itemCode: string;
|
interface SearchForm {
|
||||||
numMeasureId?: string | null;
|
itemCode: string;
|
||||||
itemName: string;
|
numMeasureId?: string | null;
|
||||||
numMeasureName?: string;
|
itemName: string;
|
||||||
itemTypeName?: string;
|
numMeasureName?: string;
|
||||||
itemTypeId?: string | number | null;
|
itemTypeName?: string;
|
||||||
pageNum: number;
|
itemTypeId?: string | number | null;
|
||||||
pageSize: number;
|
pageNum: number;
|
||||||
total: number;
|
pageSize: number;
|
||||||
weightMeasureId?: string | null;
|
total: number;
|
||||||
}
|
weightMeasureId?: string | null;
|
||||||
interface AddForm {
|
}
|
||||||
remark: string;
|
interface AddForm {
|
||||||
id?: number | null;
|
remark: string;
|
||||||
specification?: string;
|
id?: number | null;
|
||||||
itemTypeId: string | number | null;
|
specification?: string;
|
||||||
itemTypeName?: string;
|
itemTypeId: string | number | null;
|
||||||
workstageId: string | null;
|
itemTypeName?: string;
|
||||||
workstageName?: string;
|
workstageId: string | null;
|
||||||
itemName: string;
|
workstageName?: string;
|
||||||
weightMeasureId?: string | null;
|
itemName: string;
|
||||||
weightMeasureName?: string;
|
color?: string;
|
||||||
ifEnable: number;
|
weightMeasureId?: string | null;
|
||||||
}
|
weightMeasureName?: string;
|
||||||
|
ifEnable: number;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
declare namespace PrintTemplate {
|
declare namespace PrintTemplate {
|
||||||
interface Data {
|
interface Data {
|
||||||
clientCode: null | string;
|
clientCode: null | string;
|
||||||
clientId: null | string;
|
clientId: null | string;
|
||||||
clientName: null | string;
|
clientName: null | string;
|
||||||
code: null | string;
|
code: null | string;
|
||||||
content: null | string;
|
content: null | string;
|
||||||
createBy: null | string;
|
createBy: null | string;
|
||||||
createTime: null | string;
|
createTime: null | string;
|
||||||
defaultPrinterName: null | string;
|
defaultPrinterName: null | string;
|
||||||
enableFlag: null | string;
|
enableFlag: null | string;
|
||||||
remark: null | string;
|
remark: null | string;
|
||||||
status: null | string;
|
status: null | string;
|
||||||
templateCode: null | string;
|
templateCode: null | string;
|
||||||
templateId: null | string;
|
templateId: null | string;
|
||||||
templateName: null | string;
|
templateName: null | string;
|
||||||
type: null | string;
|
type: null | string;
|
||||||
updateBy: null | string;
|
updateBy: null | string;
|
||||||
updateTime: null | string;
|
updateTime: null | string;
|
||||||
userId: null | string;
|
userId: null | string;
|
||||||
userNickName: null | string;
|
userNickName: null | string;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue