std_mix_ratio.js 271 B

123456789101112
  1. /**
  2. * 配合比标准库数据模型
  3. *
  4. * @author CaiAoLin
  5. * @date 2017/7/7
  6. * @version
  7. */
  8. import mongoose from "mongoose";
  9. let collectionName = 'std_mix_ratio';
  10. let model = mongoose.model(collectionName);
  11. export {model as default, collectionName as collectionName};