Some checks failed
Build and Deploy (service.xpcool.com) / build-and-deploy (push) Failing after 31s
- 添加 api/house/presale 接口模块实现新房预售证查询功能 - 新增 POST /api/service/admin/house/presale/list 接口支持 region/purpose/keyword 筛选 - 在 HousePresaleVO 中增加 PublishDate 字段用于存储公示发布日期 - 在 house_presale 表中添加 publish_date 字段并完成数据库同步 - 更新权限种子配置新增菜单 95 新房预售及 950 查询权限 - 完成相关 controller 和 service 层代码实现并验证接口返回正常数据
31 lines
1.0 KiB
Go
31 lines
1.0 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
// HousePresale is the golang structure of table house_presale for DAO operations like Where/Data.
|
|
type HousePresale struct {
|
|
g.Meta `orm:"table:house_presale, do:true"`
|
|
Id any //
|
|
PresaleNo any // 预售证号
|
|
CommunityName any // 楼盘/项目名
|
|
Developer any // 房地产开发企业
|
|
Region any // 区县
|
|
Address any // 建筑位置
|
|
BuildingNo any // 楼栋号
|
|
HouseCount any // 套数
|
|
Area any // 建筑面积(平米)
|
|
Purpose any // 规划用途(住宅/商业)
|
|
IssueDate any // 初始核发日期
|
|
PublishDate any // 公示发布日期(YYYY-MM-DD)
|
|
Source any // 数据来源
|
|
CreatedAt any //
|
|
UpdatedAt any //
|
|
DeletedAt any //
|
|
}
|