feat(property): add 23-table property module with partitioned follow_logs and property_photos

This commit is contained in:
2026-04-29 17:27:15 +08:00
parent c57462f6d1
commit 5b55dda367
8 changed files with 1707 additions and 0 deletions

View File

@@ -439,6 +439,34 @@ class PropertyGrade(models.TextChoices):
D = "d", "D较弱"
class PropertyShopLocation(models.TextChoices):
STREET = "street", "临街商铺"
MALL = "mall", "商场"
RESIDENTIAL = "residential", "住宅底商"
GROUND_FLOOR = "ground_floor", "底层"
COMPLEX = "complex", "综合体"
class PropertyOwnershipNature(models.TextChoices):
COMMERCIAL = "commercial", "商品房"
REFORM_HOUSING = "reform_housing", "房改房"
COLLECTIVE = "collective", "集资房"
ECONOMIC = "economic", "经济适用房"
class PropertyPaymentMethod(models.TextChoices):
FULL = "full", "全款"
MORTGAGE = "mortgage", "按揭"
INSTALLMENT = "installment", "分期"
ADVANCE = "advance", "垫资"
class PropertyTaxIncluded(models.TextChoices):
EACH_PARTY = "each_party", "各付"
NET = "net", "净到手"
INCLUSIVE = "inclusive", "包税"
class PropertyContactGender(models.TextChoices):
MALE = "male", "先生"
FEMALE = "female", "女士"