mutation_cash_pool.go 240 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 /** @author: stevechan @date: 2021/2/23 @note: **/ package service import ( coreDomain "github.com/linmadan/egglib-go/core/domain" ) type MutationCashPoolService interface { coreDomain.DomainEventPublisher Mutation() error }