123456789101112131415161718192021222324 |
- /**
- * Created by jimiz on 2017/4/1.
- */
- var mongoose = require("mongoose");
- var db = require("../db/project_db");
- var Schema = mongoose.Schema;
- var gljSchema = new Schema({
- id: Number,
- projectID: Number,
- orgRQuantity: String, //Decimal
- rQuantity: String, //Decimal
- customQuantity: String, //Decimal
- quantity: String, //Decimal
- rationItemQuantity: String, //Decimal
- rationPrice: String, //Decimal
- adjustPrice: String, //Decimal
- price: String, //Decimal
- tenderQuantity: String, //Decimal
- tenderPrice: String, //Decimal
- type: Number
- // to do
- });
|