| 
									
										
										
										
											2021-11-23 17:13:55 +08:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace app\model; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use think\Collection; | 
					
						
							|  |  |  | use think\db\exception\DataNotFoundException; | 
					
						
							|  |  |  | use think\db\exception\DbException; | 
					
						
							|  |  |  | use think\db\exception\ModelNotFoundException; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2022-01-20 13:56:21 +08:00
										 |  |  |  * 优惠券验证记录  各个角色的提成 | 
					
						
							| 
									
										
										
										
											2021-11-23 17:13:55 +08:00
										 |  |  |  * Class Coupon | 
					
						
							|  |  |  |  * @package app\model | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class CouponBill extends Base | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2021-11-29 13:56:26 +08:00
										 |  |  |     public const  agency_money = "agency_money"; | 
					
						
							|  |  |  |     public const  admin_money = "admin_money"; | 
					
						
							|  |  |  |     public const  consumer_money = "consumer_money"; | 
					
						
							|  |  |  |     public function couponMain() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->hasOne(CouponMain::class, 'id',"coupon_main_id"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-11-23 17:13:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-29 13:56:26 +08:00
										 |  |  |     public function business() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->hasOne(Business::class, 'code',"business_code"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     public function account() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->hasOne(Account::class, 'user_code',"user_code"); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2021-11-23 17:13:55 +08:00
										 |  |  | } |