@@ -23,18 +23,12 @@ class Package(Base):
23
23
price_to_reserve_for_this_package : Mapped [float ] = mapped_column ()
24
24
shop_name : Mapped [str ] = mapped_column ()
25
25
category : Mapped [str ] = mapped_column ()
26
- category_tags : Mapped [str ] = mapped_column ()
27
- preview_1_10 : Mapped [str ] = mapped_column ()
28
- selling_point : Mapped [str ] = mapped_column ()
29
- meta_keywords : Mapped [str ] = mapped_column ()
30
26
brand : Mapped [str ] = mapped_column ()
31
27
min_max_age : Mapped [str ] = mapped_column ()
32
28
locations : Mapped [str ] = mapped_column ()
33
- meta_description : Mapped [str ] = mapped_column ()
34
29
price_details : Mapped [str ] = mapped_column ()
35
30
package_details : Mapped [str ] = mapped_column ()
36
31
important_info : Mapped [str ] = mapped_column ()
37
- payment_booking_info : Mapped [str ] = mapped_column ()
38
32
general_info : Mapped [str ] = mapped_column ()
39
33
early_signs_for_diagnosis : Mapped [str ] = mapped_column ()
40
34
how_to_diagnose : Mapped [str ] = mapped_column ()
@@ -49,7 +43,6 @@ class Package(Base):
49
43
recovery : Mapped [str ] = mapped_column ()
50
44
side_effects : Mapped [str ] = mapped_column ()
51
45
review_4_5_stars : Mapped [str ] = mapped_column ()
52
- brand_option_in_thai_name : Mapped [str ] = mapped_column ()
53
46
faq : Mapped [str ] = mapped_column ()
54
47
55
48
def to_dict (self ):
@@ -74,18 +67,12 @@ def to_str_for_narrow_rag(self):
74
67
price_after_cash_discount: { self .price_after_cash_discount }
75
68
installment_limit: { self .installment_limit }
76
69
price_to_reserve_for_this_package: { self .price_to_reserve_for_this_package }
77
- shop_name: { self .shop_name }
78
- category_tags: { self .category_tags }
79
- preview_1_10: { self .preview_1_10 }
80
- selling_point: { self .selling_point }
81
70
brand: { self .brand }
82
71
min_max_age: { self .min_max_age }
83
72
locations: { self .locations }
84
- meta_description: { self .meta_description }
85
73
price_details: { self .price_details }
86
74
package_details: { self .package_details }
87
75
important_info: { self .important_info }
88
- payment_booking_info: { self .payment_booking_info }
89
76
general_info: { self .general_info }
90
77
early_signs_for_diagnosis: { self .early_signs_for_diagnosis }
91
78
how_to_diagnose: { self .how_to_diagnose }
@@ -100,6 +87,5 @@ def to_str_for_narrow_rag(self):
100
87
recovery: { self .recovery }
101
88
side_effects: { self .side_effects }
102
89
review_4_5_stars: { self .review_4_5_stars }
103
- brand_option_in_thai_name: { self .brand_option_in_thai_name }
104
90
faq: { self .faq }
105
91
"""
0 commit comments