package config type Asign struct { URL string `mapstructure:"url" json:"url" yaml:"url"` // 接口地址 AppId string `mapstructure:"appId" json:"appId" yaml:"appId"` // AppId PrivateKey string `mapstructure:"privateKey" json:"privateKey" yaml:"privateKey"` // 应用私钥 NotifyUrl string `mapstructure:"notifyUrl" json:"notifyUrl" yaml:"notifyUrl"` // 合同签署完成异步通知 }