feat(property): add 23-table property module with partitioned follow_logs and property_photos
This commit is contained in:
@@ -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", "女士"
|
||||
|
||||
Reference in New Issue
Block a user