123456789101112131415161718192021222324252627282930 |
- package dtgateway
- import (
- "context"
- "GtDataStore/app/cmd/dtgateway/internal/svc"
- "GtDataStore/app/cmd/dtgateway/internal/types"
- "github.com/zeromicro/go-zero/core/logx"
- )
- type ItemHistoryDataInfoLogic struct {
- logx.Logger
- ctx context.Context
- svcCtx *svc.ServiceContext
- }
- func NewItemHistoryDataInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ItemHistoryDataInfoLogic {
- return &ItemHistoryDataInfoLogic{
- Logger: logx.WithContext(ctx),
- ctx: ctx,
- svcCtx: svcCtx,
- }
- }
- func (l *ItemHistoryDataInfoLogic) ItemHistoryDataInfo(req *types.ItemHistoryDataByTimeResq) (resp *types.MultiAddItemHistoryDataReq, err error) {
- // todo: add your logic here and delete this line
- return
- }
|