package logic import ( "context" "git.i2edu.net/i2/i2-bill-erp/internal/svc" "git.i2edu.net/i2/i2-bill-erp/transform" "git.i2edu.net/i2/go-zero/core/logx" ) type PostExcelLogLogic struct { ctx context.Context svcCtx *svc.ServiceContext logx.Logger } func NewPostExcelLogLogic(ctx context.Context, svcCtx *svc.ServiceContext) *PostExcelLogLogic { return &PostExcelLogLogic{ ctx: ctx, svcCtx: svcCtx, Logger: logx.WithContext(ctx), } } func (l *PostExcelLogLogic) PostExcelLog(in *transform.ExcelLogReq) (*transform.ExcelLogRes, error) { // todo: add your logic here and delete this line return &transform.ExcelLogRes{}, nil }