Files
shz-backend/sql/public_job_fair_cross_domain_cities.sql
lapuda b35ed5989e feat: Add Cross-Domain Job Fair and Alliance City Management
- Implemented AppOutdoorFairController for outdoor job fair public H5 interfaces.
- Created CrossCityAllianceController for managing cross-domain alliance cities.
- Added CrossCityAlliance domain model and corresponding service and mapper.
- Developed CrossDomainJobVO for aggregating job data across job fairs.
- Created SQL scripts for initializing the cross-city alliance table and modifying the public job fair schema.
- Added migration script for backing up and restoring the HighGo database schema.
2026-06-27 22:44:56 +08:00

8 lines
390 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 公共招聘会:新增「跨域联盟城市」列,存逗号分隔的城市名称。
-- 依赖shz.public_job_fair 已存在shz.cms_cross_city_alliance 提供城市数据。
ALTER TABLE public_job_fair
ADD COLUMN IF NOT EXISTS cross_domain_cities VARCHAR(500);
COMMENT ON COLUMN public_job_fair.cross_domain_cities IS '跨域联盟城市(逗号分隔的城市名称)';