imock-yml
v1.0.0
Published
mkck data from yaml
Downloads
4
Readme
- yaml
inboundNumber: IN@string("number", 8)
productId: '@id'
productName: '@ctitle(4, 8)产品'
productCode: PRO@string("number", 6)
warehouseId: '@id'
warehouseName: '@ctitle(4, 8)仓库'
inboundQuantity: '@integer(1, 1000)'
inboundDate: '@date("yyyy-MM-dd")'
supplierId: '@id'
supplierName: '@ctitle(4, 8)公司'
inboundType: '@pick(["采购入库", "退货入库", "调拨入库", "其他入库"])'
responsiblePerson: '@cname'
remarks: '@csentence(10, 20)'
inboundId: '@id'- example
const data = await mockFromYaml('./data.mock.yaml');
console.log(data);