You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
298 B
17 lines
298 B
package income |
|
|
|
import ( |
|
incomeD "go-common/app/job/main/growup/dao/income" |
|
) |
|
|
|
// AvChargeSvr av charge service |
|
type AvChargeSvr struct { |
|
dao *incomeD.Dao |
|
} |
|
|
|
// NewAvChargeSvr new av charge service |
|
func NewAvChargeSvr(dao *incomeD.Dao) (svr *AvChargeSvr) { |
|
return &AvChargeSvr{ |
|
dao: dao, |
|
} |
|
}
|
|
|