Go to file
曹鹏飞 dfa793fcff refactor(quotation): 将“报价对象”统一修改为“报价主体”
- 统一替换代码注释中的“报价对象”为“报价主体”
- 同步更新验证提示信息中的“报价对象”为“报价主体”
- 统一调整接口返回和请求参数描述为“报价主体”
- 确保相关实体类及请求VO中字段注释一致性
- 修改购物车和订单相关提示消息中的“报价对象”为“报价主体”
2026-05-13 14:35:14 +08:00
nflg-mobilebroken-admin refactor(quotation): 将“报价对象”统一修改为“报价主体” 2026-05-13 14:35:14 +08:00
nflg-mobilebroken-auth Merge branch 'prod/20260407' into feature/quotation 2026-04-08 09:22:55 +08:00
nflg-mobilebroken-cfs-app feat(interceptor): 添加多语言拦截器实现 2026-04-08 09:21:26 +08:00
nflg-mobilebroken-common refactor(quotation): 将“报价对象”统一修改为“报价主体” 2026-05-13 14:35:14 +08:00
nflg-mobilebroken-gateway fix(service): 修正设备数据状态更新逻辑 2025-12-18 18:08:56 +08:00
nflg-mobilebroken-gongfu Merge branch 'prod/20260407' into feature/quotation 2026-04-08 09:22:55 +08:00
nflg-mobilebroken-product Merge branch 'prod/20260407' into feature/quotation 2026-04-08 09:22:55 +08:00
nflg-mobilebroken-push feat(gongfu): 修改设备批量操作功能 2026-02-02 17:43:57 +08:00
nflg-mobilebroken-quotation refactor(quotation): 将“报价对象”统一修改为“报价主体” 2026-05-13 14:35:14 +08:00
nflg-mobilebroken-repository refactor(quotation): 将“报价对象”统一修改为“报价主体” 2026-05-13 14:35:14 +08:00
nflg-mobilebroken-starter feat(serial-number): 添加乐观锁支持及初始化报价代码接口 2026-05-13 10:07:34 +08:00
.apifox-helper.properties feat(admin): 更新购物控制器以支持调价功能 2026-03-25 18:40:15 +08:00
.gitignore feat: 聊天列表添加未读信息 2025-02-24 11:44:59 +08:00
pom.xml Merge branch 'prod/20260407' into feature/quotation 2026-04-08 09:22:55 +08:00
readme.md feat(bi): 新增工单及派工相关业务指标统计接口 2025-12-17 18:01:15 +08:00

readme.md

服务器需要安装的软件

  • ImageMagick

用于将苹果的HEIC图片格式转换为PNG图片格式必须源码编译否则不支持HEIC格式

yum install -y epel-release
rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
yum install -y yum-utils
yum-config-manager --enable remi
wget https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm
wget https://download1.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-7.noarch.rpm
rpm -Uvh rpmfusion-free-release-7.noarch.rpm rpmfusion-nonfree-release-7.noarch.rpm
yum clean all
yum install -y libde265 libx265
yum install -y libheif-devel
yum install -y libtool-ltdl-devel
# 源码编译安装ImageMagick
yum groupinstall -y "Development Tools"
yum install -y libjpeg-turbo-devel libpng-devel freetype-devel libtiff-devel giflib-devel
yum install -y libheif-devel libde265-devel x265-devel
wget https://github.com/ImageMagick/ImageMagick/archive/refs/tags/7.1.2-11.tar.gz
tar xf 7.1.2-11.tar.gz
cd ImageMagick-7.1.2-11/
./configure --with-heif=yes --with-modules --enable-hdri
make -j$(nproc)
make install
which magick
ln -s /usr/local/bin/magick /usr/bin/magick
magick -version
magick -list format | grep HEIC