Divar geo-coords to facility map + medical gate + RawListing FK/geo migrations
CI/CD / CI · dotnet build (push) Successful in 2m6s
CI/CD / Deploy · hamkadr (push) Successful in 2m3s

This commit is contained in:
soroush.asadi
2026-06-09 21:38:55 +03:30
parent cf5e0011c4
commit 380243b669
14 changed files with 3567 additions and 36 deletions
+6
View File
@@ -25,10 +25,16 @@ public class RawListing
public Shift? LinkedShift { get; set; }
public int? LinkedTalentId { get; set; } // آگهی «آماده به کار» ساخته‌شده از این متن
public TalentListing? LinkedTalent { get; set; }
[MaxLength(500)]
public string? SourceUrl { get; set; }
/// <summary>Approximate coordinates harvested from the source (e.g. Divar's fuzzed map center).
/// Carried through the review queue so a manual publish can still place the facility on the map.</summary>
public double? Lat { get; set; }
public double? Lng { get; set; }
/// <summary>SHA-256 of the normalized text — used to dedupe across ingestion runs.</summary>
[MaxLength(64)]
public string? ContentHash { get; set; }