|
@@ -41,9 +41,9 @@ func CompanyFreeze(companyId, productId int) (companyReportPermissionList []*Com
|
|
|
freezeEndDate = time.Now().AddDate(0, 2, 0).Format(utils.FormatDate)
|
|
|
}
|
|
|
|
|
|
- // 权益客户 冻结期 改为60天
|
|
|
+ // 权益客户 冻结期 改为两个月
|
|
|
if productId == 2 {
|
|
|
- freezeEndDate = time.Now().AddDate(0, 0, 60).Format(utils.FormatDate)
|
|
|
+ freezeEndDate = time.Now().AddDate(0, 2, 0).Format(utils.FormatDate)
|
|
|
}
|
|
|
|
|
|
//客户产品 状态 变更
|