|
@@ -36,9 +36,9 @@ func CompanyFreeze(companyId, productId int) (companyReportPermissionList []*Com
|
|
|
freezeStartDate := time.Now().Format(utils.FormatDate)
|
|
|
freezeEndDate := time.Now().AddDate(0, 3, 0).Format(utils.FormatDate)
|
|
|
|
|
|
- //FICC客户冻结期由三个月改为两个月
|
|
|
+ //FICC客户冻结期为六个月
|
|
|
if productId == 1 {
|
|
|
- freezeEndDate = time.Now().AddDate(0, 2, 0).Format(utils.FormatDate)
|
|
|
+ freezeEndDate = time.Now().AddDate(0, 6, 0).Format(utils.FormatDate)
|
|
|
}
|
|
|
|
|
|
// 权益客户 冻结期 改为两个月
|