package bo import ( "time" "voucher/internal/biz/vo" ) // UseLogBo 领域实体Bo结构,字段和模型字段保持一致 type UseLogBo struct { ID uint64 OrderNo string Amount int64 Type vo.UseLogType UseTime *time.Time CreateTime *time.Time }