import { Provide } from "@midwayjs/core";
import { BaseService } from "@cool-midway/core";
import { InjectEntityModel } from "@midwayjs/typeorm";
import { Repository } from "typeorm";
import { RecycleAppointmentLogEntity } from "../entity/recycleappointmentlog";

/**
 * 回收物品订单-预约的变动
 */
@Provide()
export class RecycleAppointmentLogService extends BaseService {
  @InjectEntityModel(RecycleAppointmentLogEntity)
  recycleAppointmentLogEntity: Repository<RecycleAppointmentLogEntity>;
}