| 123456789101112131415161718192021222324252627 | 
							- 'use strict';
 
- /**
 
-  *
 
-  *
 
-  * @author Zhong
 
-  * @date 2018/5/29
 
-  * @version
 
-  */
 
- //清单指引条目
 
- const mongoose = require('mongoose');
 
- const Schema = mongoose.Schema;
 
- const stdBillsGuidanceItems = new Schema({
 
-     libID: String,
 
-     ID: String, //uuid
 
-     ParentID: String,
 
-     NextSiblingID: String,
 
-     billsID: String, //关联清单的ID
 
-     name: String,
 
-     comment: String, //备注
 
-     type: Number, //0:工作内容 1:定额
 
-     rationID: {type: Number, default: null}, //定额类型时
 
-     deleted: {type: Boolean, default: false}
 
- }, {versionKey: false});
 
- mongoose.model('std_billsGuidance_items', stdBillsGuidanceItems, 'std_billsGuidance_items');
 
 
  |