This commit is contained in:
邹宗楠
2025-04-29 11:39:25 +08:00
parent 625a3a3457
commit 9da5d239c6
5 changed files with 66 additions and 47 deletions

View File

@@ -99,3 +99,19 @@ func TestOrderRefund(t *testing.T) {
_, _, err := api.OrderRefund(param)
fmt.Println(err)
}
func TestTLAddTerm(t *testing.T) {
param := &AddTermReq{
Termno: fmt.Sprintf("%d_1", 668470),
Devicetype: "10",
Termsn: fmt.Sprintf("%d_1", 668470),
Operation: "00",
Termstate: "",
Termaddress: fmt.Sprintf("%s-%s-%s-%s", "四川省", "成都市", "金牛区", "圃圆小筑"),
Signtype: "RSA",
Sign: "",
}
param.Termstate = "00"
api.TLAddTerm(param)
}