[F] Fix capitalization

This commit is contained in:
Hykilpikonna
2022-08-11 12:40:54 -04:00
parent f59f0875b8
commit f484d4df23
+53 -53
View File
@@ -5,65 +5,65 @@ from typing import List, Any
class GatewayOrderItem: class GatewayOrderItem:
item_id: int ItemId: int
item_barcode: str ItemBarcode: str
goods_name: str GoodsName: str
goods_link: str GoodsLink: str
property: str Property: str
user_remark: str UserRemark: str
real_count: int RealCount: int
unit_price: float UnitPrice: float
goods_pic: str GoodsPic: str
status_id: int StatusId: int
ordered_time: int OrderedTime: int
warehouse_id: int WarehouseId: int
warehouse_name: str WarehouseName: str
item_type: int ItemType: int
goods_code: str goodsCode: str
sku: str sku: str
recharge_type: int rechargeType: int
rebate_status: int rebateStatus: int
buyable_service_ext_list: List[Any] buyableServiceExtList: List[Any]
open_packaging: int openPackaging: int
refund: int refund: int
additional_all_photo_list: List[Any] additionalAllPhotoList: List[Any]
status_name: str statusName: str
additional_service_video_url: None additionalServiceVideoUrl: None
has_hd_qc_video_service: int hasHdQcVideoService: int
class GatewayOrderOpList: class GatewayOrderOpList:
name: str Name: str
code: int Code: int
level: int Level: int
class GatewayOrder: class GatewayOrder:
order_pkg_type: int OrderPkgType: int
order_pkg_no: str OrderPkgNo: str
order_pkg_id: int OrderPkgId: int
status_id: int StatusId: int
status_name: str StatusName: str
shop_source: str ShopSource: str
op_list: List[GatewayOrderOpList] OpList: List[GatewayOrderOpList]
items: List[GatewayOrderItem] Items: List[GatewayOrderItem]
purchaser_name: str purchaserName: str
purchaser_avatar: str purchaserAvatar: str
order_state: str orderState: str
purchaser_id: str purchaserId: str
spu_code: str spuCode: str
currency: str currency: str
order_status: int orderStatus: int
source_icon: str sourceIcon: str
source_type: int sourceType: int
mall_delivery_name: str MallDeliveryName: str
total_price: float TotalPrice: float
total_freight: int TotalFreight: int
pay_price: float PayPrice: float
paypal_check: bool paypalCheck: bool
order_can_delete: bool orderCanDelete: bool
have_rebate_goods: bool haveRebateGoods: bool
order_add_service: List[Any] orderAddService: List[Any]
currency_symbol: str currencySymbol: str
total_refund: int totalRefund: int
consultation_flag: bool consultationFlag: bool