// ============================================================================ // This is auto-generated by gf cli tool only once. Fill this file as you wish. // ============================================================================ package repair import ( "lims_adapter/dao/repair/internal" ) // repairFlowDao 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 repairFlowDao struct { internal.RepairFlowDao } var ( // RepairFlow is globally public accessible object for table repair_flow operations. RepairFlow = repairFlowDao{ internal.RepairFlow, } ) type RepairFlowDao struct { internal.RepairFlowDao } func NewRepairFlowDao(tenant string) *RepairFlowDao { dao := internal.NewRepairFlowDao(tenant) return &RepairFlowDao{ dao, } } // Fill with you ideas below.