Files
notes/calendar/diary/2026年/2026-02-27.md
T
Docker7530 1a3976708a 1772702706
2026-03-05 17:25:08 +08:00

67 lines
2.5 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 任务
- [x] 开发:参加 IBS 项目晨会,同步昨日问题跟进事项。(李春良 0.5)
- [x] 客响:试用单前置校验,邮箱校验修复。(张鹏豪 2)
- [x] 客响:试用、试用变更新增域名、非首次开通备案号校验问题。(张鹏豪 2)
- [x] 测试:IBS 7.18.0 版本支撑测试。(有加速范围 为空 的场景嘛?订购是:022024120601。暂时无法复现 prod_type 为空的情况 1
- [x] 测试:IBS 7.18.0 版本支撑测试。(新增域名工单问题:(1)确认窗口内容为空;(2)无法提交修改后的工单 1)
- [x] 客响:www.qfmkgk.com 山东正祥工矿设备股份有限公司 客户说IBS已经删除了。(已处理 1)
# 日志
充值
60 元 123 美元
充值比例
1:2.05
模型费率
claude-opus-4-6
输入价格 5.00美元 输出价格 25.00美元 缓存读取 0.500美元 缓存写入 6.25美元 倍率 +20%
真实输入:$6.00 / 1M tokens
真实输出:$30.00 / 1M tokens
真实缓存读取:$0.60 / 1M tokens
真实缓存写入:$7.50 / 1M tokens
充值倍率
0.2人民币→1美元
我是 CDN IBS 组的田卓。想请教下研发效能EP平台中,在一个版本中用一个需求号,提交了四次共性代码输出,是否发版后会被归为一个能力输出呢?也就是能力输出是根据需求号定的,一个需求号只能是一个需求输出呢。
```
// buffer.append(checkMobileAndMail(request));
if (StringUtils.isNotBlank(request.getEcId()) && enterpriseInfoDao.findByEcId(request.getEcId()) == null) {
Integer checkResult = enterpriseService.checkMobileAndEmailReturnExceptionCode(request.getEcNumber(), request.getEcMail());
if (!CreateAccountExceptionTypeEnum.NO_EXCEPTION.getCode().equals(checkResult)) {
String message = String.join("", CreateAccountExceptionTypeEnum.getListDescriptionByCode2(checkResult));
log.info("testOrder 试用单前置校验异常: {}", message);
buffer.append(message);
}
}
```
checkMobileAndEmailReturnExceptionCode 中需要增加一个场景:
```
if (!VerificationUtil.verificationEmail(request.getEcMail())) {
邮箱格式不正确
}
```
注意了解下 CreateAccountExceptionTypeEnum 的机制。貌似 getListDescriptionByCode 和 getListDescriptionByCode2 会根据 code 进行运算,新的异常编码要符合机制。
这个 code 是什么机制?给我讲讲。
# 总结
完全想不到发生了什么。