import { Provide } from '@midwayjs/core';
|
import { BaseService } from '@cool-midway/core';
|
import { InjectEntityModel } from '@midwayjs/typeorm';
|
import { Repository } from 'typeorm';
|
import { PushSorterHealthEntity } from '../entity/sorterhealth';
|
|
/**
|
* 分拣员健康监测服务
|
*/
|
@Provide()
|
export class PushSorterHealthService extends BaseService {
|
@InjectEntityModel(PushSorterHealthEntity)
|
pushSorterHealthEntity: Repository<PushSorterHealthEntity>;
|
}
|