From 252def479a9692755c923d4e3dad56456d30319b Mon Sep 17 00:00:00 2001 From: kanade Date: Wed, 17 Dec 2025 09:31:24 +0800 Subject: [PATCH] =?UTF-8?q?feat(ik3cloud):=20=E6=B7=BB=E5=8A=A0=E8=B5=84?= =?UTF-8?q?=E6=96=99=E4=BF=A1=E6=81=AF=E6=9C=8D=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在Ik3cloud结构体中新增Information字段 - 扩展服务模块以支持资料信息管理功能 --- ik3cloud/ik3cloud.go | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/ik3cloud/ik3cloud.go b/ik3cloud/ik3cloud.go index 95c3c26..0196944 100644 --- a/ik3cloud/ik3cloud.go +++ b/ik3cloud/ik3cloud.go @@ -1,17 +1,18 @@ package ik3cloud type Ik3cloud struct { - Department department // 部门 - Staff staff // 员工 - Position position // 职位 - Contact contact // 联系人 - Factory factory // 工厂 - Custom custom // 客户 - Product product // 产品 - Receivable receivable // 应收 - Payable payable // 应付 - Dict dict // 字典 - Payment payment // 付款单 + Department department // 部门 + Staff staff // 员工 + Position position // 职位 + Contact contact // 联系人 + Factory factory // 工厂 + Custom custom // 客户 + Product product // 产品 + Receivable receivable // 应收 + Payable payable // 应付 + Dict dict // 字典 + Payment payment // 付款单 + Information information // 资料 } type Entity struct { Id int64 `json:"Id"`