Add member pop_business_hours. Add default constructor.
This commit is contained in:
		@@ -4,15 +4,18 @@
 | 
			
		||||
class ATBPaymentOption
 | 
			
		||||
{
 | 
			
		||||
public:
 | 
			
		||||
	int pop_id;
 | 
			
		||||
	std::string pop_label;
 | 
			
		||||
	int pop_payment_method_id;
 | 
			
		||||
	std::string pop_day_end_time;
 | 
			
		||||
	std::string pop_day_night_end_time;
 | 
			
		||||
	double pop_price_night;
 | 
			
		||||
	double pop_min_time;
 | 
			
		||||
	double pop_max_time;
 | 
			
		||||
	double pop_min_price;
 | 
			
		||||
	int pop_carry_over;
 | 
			
		||||
    ATBPaymentOption() = default;
 | 
			
		||||
 | 
			
		||||
    int pop_id;
 | 
			
		||||
    std::string pop_label;
 | 
			
		||||
    int pop_payment_method_id;
 | 
			
		||||
    std::string pop_day_end_time;
 | 
			
		||||
    std::string pop_day_night_end_time;
 | 
			
		||||
    double pop_price_night;
 | 
			
		||||
    double pop_min_time;
 | 
			
		||||
    double pop_max_time;
 | 
			
		||||
    double pop_min_price;
 | 
			
		||||
    int pop_carry_over;
 | 
			
		||||
    int pop_daily_card_price;
 | 
			
		||||
    int pop_business_hours;
 | 
			
		||||
};
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user