stdRation_installFeeItem.js 561 B

12345678910111213141516171819202122
  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. {
  10. rationRepId: Number,
  11. ID: String,
  12. feeItem: String, //费用项
  13. feeType: String, //费用类型
  14. position: String, //记取位置
  15. section: [],
  16. deleted: false,
  17. seq: Number,
  18. },
  19. { versionKey: false }
  20. );
  21. mongoose.model("std_ration_lib_installation", installFeeItemSchema, "std_ration_lib_installation");