stdRation_installFeeItem.js 532 B

123456789101112131415161718
  1. /**
  2. * Created by Zhong on 2018/3/22.
  3. */
  4. /*标准定额库-安装费用项*/
  5. const mongoose = require('mongoose');
  6. const Schema = mongoose.Schema;
  7. //标准安装增加费-费用项
  8. const installFeeItemSchema = new Schema({
  9. rationRepId: Number,
  10. ID: String,
  11. feeItem: String, //费用项
  12. feeType: String, //费用类型
  13. position: String, //记取位置
  14. section: [],
  15. deleted: false
  16. }, {versionKey: false});
  17. mongoose.model('std_ration_lib_installation', installFeeItemSchema, 'std_ration_lib_installation');