// ================================================================================ // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // You can delete these comments if you wish manually maintain this interface file. // ================================================================================ package service import ( "context" ) type ( ICouponUsers interface { // 添加用户选择武器记录 AddRecord(ctx context.Context, jwcode int, id int, name string) (err error) } ) var ( localCouponUsers ICouponUsers ) func CouponUsers() ICouponUsers { if localCouponUsers == nil { panic("implement not found for interface ICouponUsers, forgot register?") } return localCouponUsers } func RegisterCouponUsers(i ICouponUsers) { localCouponUsers = i }