123456789101112131415161718192021222324252627 |
- /**
- * 单价文件数据结构
- *
- * @author CaiAoLin
- * @date 2017/6/29
- * @version
- */
- import mongoose from "mongoose";
- let Schema = mongoose.Schema;
- let collectionName = 'unit_price';
- let modelSchema = {
- // 自增ID
- id: Number,
- // 项目id
- project_id: Number,
- // 标段id
- tender_id: Number,
- // 基价单价
- base_price: String,
- // 市场单价
- market_price: String,
- // 编码
- code: String
- };
- export default mongoose.model(collectionName, new Schema(modelSchema, {versionKey: false, collection: collectionName}));
|