feat(erp): 添加报销单及其费用管理功能
- 在 ERP 服务中新增 Request 模块,用于处理报销单相关逻辑 - 实现报销单的增删改查接口,支持列表、详情及编辑操作 - 新增费用管理模块 Cost,支持费用项的添加、修改、删除和列表查询 - 定义完整的请求与响应结构体,包括分页、搜索条件和返回数据格式 - 集成客户端调用逻辑,通过 RPC 方式与其他服务通信 - 引入 decimal 包处理金额字段,确保数值精度 - 添加时间戳字段用于记录创建和更新时间
This commit is contained in:
5
erp/request/request.go
Normal file
5
erp/request/request.go
Normal file
@@ -0,0 +1,5 @@
|
||||
package request
|
||||
|
||||
type Request struct {
|
||||
Cost cost
|
||||
}
|
||||
Reference in New Issue
Block a user