// ============================================================================ // This is auto-generated by gf cli tool only once. Fill this file as you wish. // ============================================================================ package dao import ( "dashoo.cn/opms_parent/app/dao/contract/internal" ) // ctrContractApplicationDao 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 ctrContractApplicationDao struct { internal.CtrContractApplicationDao } var ( // CtrContractApplication is globally public accessible object for table ctr_contract_application operations. CtrContractApplication = ctrContractApplicationDao{ internal.CtrContractApplication, } ) type CtrContractApplicationDao struct { internal.CtrContractApplicationDao } func NewCtrContractApplicationDao(tenant string) *CtrContractApplicationDao { dao := internal.NewCtrContractApplicationDao(tenant) return &CtrContractApplicationDao{ dao, } } // Fill with you ideas below.