10 lines
143 B
Go
10 lines
143 B
Go
|
|
package services
|
||
|
|
|
||
|
|
var Bill = &billService{}
|
||
|
|
|
||
|
|
type billService struct{}
|
||
|
|
|
||
|
|
func (s *billService) GenNo() string {
|
||
|
|
return ID.GenReadable("bil")
|
||
|
|
}
|