| 123456789101112131415161718192021222324252627282930313233343536 |
- // ============================================================================
- // This is auto-generated by gf cli tool only once. Fill this file as you wish.
- // ============================================================================
- package repair
- import (
- "lims_adapter/dao/repair/internal"
- )
- // repairResultDao is the manager for logic model data accessing
- // and custom defined data operations functions management. You can define
- // methods on it to extend its functionality as you wish.
- type repairResultDao struct {
- internal.RepairResultDao
- }
- var (
- // RepairResult is globally public accessible object for table repair_result operations.
- RepairResult = repairResultDao{
- internal.RepairResult,
- }
- )
- type RepairResultDao struct {
- internal.RepairResultDao
- }
- func NewRepairResultDao(tenant string) *RepairResultDao {
- dao := internal.NewRepairResultDao(tenant)
- return &RepairResultDao{
- dao,
- }
- }
- // Fill with you ideas below.
|