1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /**
- * 具体单价数据结构
- *
- * @author CaiAoLin
- * @date 2017/6/29
- * @version
- */
- const mongoose = require('mongoose');
- let Schema = mongoose.Schema;
- let collectionName = 'unit_price';
- let modelSchema = {
- // 自增ID
- id: {type:Number,unique: true, index: true},
- // 基价单价
- base_price: String,
- // 市场单价
- market_price: String,
- taxRate:String,//税率
- // 编码
- code: {
- type: String,
- index: true
- },
- //原始的编码
- original_code: {
- type: String,
- index: true
- },
- // 名称
- name: {
- type: String,
- index: true
- },
- // 规格型号
- specs: {
- type: String,
- default: ''
- },
- // 单位
- unit: String,
- // 类型
- type: Number,
- // 类型简称
- short_name: String,
- // 单价文件表id
- unit_price_file_id: {type: Number, index: true},
- // 对应标准库工料机id
- glj_id: Number,
- priceFrom:String,//价格来源
- infoPrice:Number,//信息价
- purchaseFeeRate:Number,//采保费率
- //是否新增1为是,0为否
- is_add:{
- type: Number,
- default: 0
- }
- };
- mongoose.model(collectionName, new Schema(modelSchema, {versionKey: false, collection: collectionName}));
|