- package equipment
- import "lims_adapter/dao"
- // Service 设备
- type Service struct {
- Dao *dao.BaseEquipmentQualificationDao
- Tenant string
- }
- // NewSrv 服务初始化
- func NewSrv(tenant string) Service {
- return Service{Dao: dao.NewBaseEquipmentQualificationDao(tenant), Tenant: tenant}
- }
|