add clear
This commit is contained in:
+40
-40
@@ -44,10 +44,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $key
|
||||
* @param $key
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setKey(string $key): Redhat
|
||||
public function setKey($key): Redhat
|
||||
{
|
||||
$this->key = $key;
|
||||
return $this;
|
||||
@@ -62,10 +62,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $signType
|
||||
* @param $signType
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setSignType(string $signType): Redhat
|
||||
public function setSignType($signType): Redhat
|
||||
{
|
||||
$this->signType = $signType;
|
||||
return $this;
|
||||
@@ -80,10 +80,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $charset
|
||||
* @param $charset
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setCharset(string $charset): Redhat
|
||||
public function setCharset($charset): Redhat
|
||||
{
|
||||
$this->charset = $charset;
|
||||
return $this;
|
||||
@@ -98,10 +98,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $nonce_str
|
||||
* @param $nonce_str
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setNonceStr(string $nonce_str): Redhat
|
||||
public function setNonceStr($nonce_str): Redhat
|
||||
{
|
||||
$this->nonce_str = $nonce_str;
|
||||
return $this;
|
||||
@@ -116,10 +116,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $sign
|
||||
* @param $sign
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setSign(string $sign): Redhat
|
||||
public function setSign($sign): Redhat
|
||||
{
|
||||
$this->sign = $sign;
|
||||
return $this;
|
||||
@@ -137,10 +137,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $mch_billno
|
||||
* @param $mch_billno
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setMchBillno(string $mch_billno): Redhat
|
||||
public function setMchBillno($mch_billno): Redhat
|
||||
{
|
||||
$this->mch_billno = $mch_billno;
|
||||
return $this;
|
||||
@@ -155,10 +155,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $mch_id
|
||||
* @param $mch_id
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setMchId(string $mch_id): Redhat
|
||||
public function setMchId($mch_id): Redhat
|
||||
{
|
||||
$this->mch_id = $mch_id;
|
||||
return $this;
|
||||
@@ -173,10 +173,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $mch_name
|
||||
* @param $mch_name
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setMchName(string $mch_name): Redhat
|
||||
public function setMchName($mch_name): Redhat
|
||||
{
|
||||
$this->mch_name = $mch_name;
|
||||
return $this;
|
||||
@@ -191,10 +191,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $qqappid
|
||||
* @param $qqappid
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setQqappid(string $qqappid): Redhat
|
||||
public function setQqappid($qqappid): Redhat
|
||||
{
|
||||
$this->qqappid = $qqappid;
|
||||
return $this;
|
||||
@@ -209,10 +209,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $re_openid
|
||||
* @param $re_openid
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setReOpenid(string $re_openid): Redhat
|
||||
public function setReOpenid($re_openid): Redhat
|
||||
{
|
||||
$this->re_openid = $re_openid;
|
||||
return $this;
|
||||
@@ -227,10 +227,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $total_amount
|
||||
* @param $total_amount
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setTotalAmount(string $total_amount): Redhat
|
||||
public function setTotalAmount($total_amount): Redhat
|
||||
{
|
||||
$this->total_amount = $total_amount;
|
||||
return $this;
|
||||
@@ -245,10 +245,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $total_num
|
||||
* @param $total_num
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setTotalNum(string $total_num): Redhat
|
||||
public function setTotalNum($total_num): Redhat
|
||||
{
|
||||
$this->total_num = $total_num;
|
||||
return $this;
|
||||
@@ -263,10 +263,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $wishing
|
||||
* @param $wishing
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setWishing(string $wishing): Redhat
|
||||
public function setWishing($wishing): Redhat
|
||||
{
|
||||
$this->wishing = $wishing;
|
||||
return $this;
|
||||
@@ -281,10 +281,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $act_name
|
||||
* @param $act_name
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setActName(string $act_name): Redhat
|
||||
public function setActName($act_name): Redhat
|
||||
{
|
||||
$this->act_name = $act_name;
|
||||
return $this;
|
||||
@@ -299,10 +299,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $icon_id
|
||||
* @param $icon_id
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setIconId(string $icon_id): Redhat
|
||||
public function setIconId($icon_id): Redhat
|
||||
{
|
||||
$this->icon_id = $icon_id;
|
||||
return $this;
|
||||
@@ -317,10 +317,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $banner_id
|
||||
* @param $banner_id
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setBannerId(string $banner_id): Redhat
|
||||
public function setBannerId($banner_id): Redhat
|
||||
{
|
||||
$this->banner_id = $banner_id;
|
||||
return $this;
|
||||
@@ -335,10 +335,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $notify_url
|
||||
* @param $notify_url
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setNotifyUrl(string $notify_url): Redhat
|
||||
public function setNotifyUrl($notify_url): Redhat
|
||||
{
|
||||
$this->notify_url = $notify_url;
|
||||
return $this;
|
||||
@@ -353,10 +353,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $not_send_msg
|
||||
* @param $not_send_msg
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setNotSendMsg(string $not_send_msg): Redhat
|
||||
public function setNotSendMsg($not_send_msg): Redhat
|
||||
{
|
||||
$this->not_send_msg = $not_send_msg;
|
||||
return $this;
|
||||
@@ -371,10 +371,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $min_value
|
||||
* @param $min_value
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setMinValue(string $min_value): Redhat
|
||||
public function setMinValue($min_value): Redhat
|
||||
{
|
||||
$this->min_value = $min_value;
|
||||
return $this;
|
||||
@@ -389,10 +389,10 @@ class Redhat extends SmallProgram
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $max_value
|
||||
* @param $max_value
|
||||
* @return Redhat
|
||||
*/
|
||||
public function setMaxValue(string $max_value): Redhat
|
||||
public function setMaxValue($max_value): Redhat
|
||||
{
|
||||
$this->max_value = $max_value;
|
||||
return $this;
|
||||
|
||||
Reference in New Issue
Block a user