wangzhibo
2026-07-16 9f6e099c39b61027cc96df77200b98388d48d348
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Provide } from '@midwayjs/core';
import { BaseService } from '@cool-midway/core';
import { InjectEntityModel } from '@midwayjs/typeorm';
import { Repository } from 'typeorm';
import { PushSiteweightEntity } from '../entity/siteweight';
 
/**
 * 站点称重业务数据服务
 */
@Provide()
export class PushSiteweightService extends BaseService {
  @InjectEntityModel(PushSiteweightEntity)
  pushSiteweightEntity: Repository<PushSiteweightEntity>;
}