huayandong

update doc api

@@ -116,3 +116,26 @@ public static class Request { @@ -116,3 +116,26 @@ public static class Request {
116 } 116 }
117 ``` 117 ```
118 118
  119 +
  120 +
  121 +##### 5. 后台页面赠送学生 精华小学期课程接口
  122 +
  123 +- URL: {{localhost}}/boxfish-online-card/order/textbook/manage/submitOrderXxq
  124 +- Method: POST
  125 +- RequestBody:
  126 +
  127 +```java
  128 +public static class Request {
  129 + private Long userId; // 收货人盒子鱼ID
  130 + private String grade; // 赠送小学期的年级
  131 + private Long sourceInvitationCode; // 该收货人的邀请人
  132 +
  133 + private String orderName;
  134 + private String orderMobile;
  135 +
  136 + private String orderProvince;
  137 + private String orderCity;
  138 + private String orderCounty;
  139 + private String orderAddressDetail;
  140 +}
  141 +```