tools.py 171 B

12345678910
  1. import bson
  2. def int2long(param: int):
  3. """int 转换成 long """
  4. return bson.int64.Int64(param)
  5. def object_id(_id: str):
  6. return bson.objectid.ObjectId(_id)