/*
|
* @Description:库存管理
|
* @Version: 2.0
|
* @Autor: wuyun
|
* @Date: 2022-08-24 14:13:25
|
* @LastEditors: wuyun
|
* @LastEditTime: 2022-08-26 11:41:02
|
*/
|
export interface InventoryOperate {
|
id?: string
|
type?: string
|
registerDate: string
|
operator: string
|
category: string
|
model: string
|
batchNo?: string
|
quantity: number | undefined
|
unit: string
|
registerType: string
|
remark?: string
|
files?: File[]
|
fileIds?: string[]
|
taskId?: string
|
taskNo?: string
|
sedimentId?: string
|
customerName?: string
|
customerId?: string
|
}
|
interface saleOrderInfoType {
|
id?: string // 主键id
|
orderNo?: string // 订单编号
|
customerId: string // 客户id
|
customerName: string // 客户名称
|
areaName: string // 地区
|
status: string // 状态
|
signDate: string // 签订日期
|
concatName: string // 联系人
|
concatPhone: string // 联系人电话
|
totalAmount: string // 合同额
|
product: string // 产品
|
}
|