consts_gen_dao_template_entity.go 712 B

1234567891011121314151617181920
  1. // Copyright GoFrame gf Author(https://goframe.org). All Rights Reserved.
  2. //
  3. // This Source Code Form is subject to the terms of the MIT License.
  4. // If a copy of the MIT was not distributed with this file,
  5. // You can obtain one at https://github.com/gogf/gf.
  6. package consts
  7. const TemplateGenDaoEntityContent = `
  8. // =================================================================================
  9. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. {TplCreatedAtDatetimeStr}
  10. // =================================================================================
  11. package entity
  12. {TplPackageImports}
  13. // {TplTableNameCamelCase} is the golang structure for table {TplTableName}.
  14. {TplStructDefine}
  15. `