feat(erp): 添加禁用标记字段以支持状态过滤

- 在 expense.go 中添加 BanFlag 字段用于标识报销单状态
- 在 receipt.go 中添加 BanFlag 字段用于标识结汇单状态
- 在 request.go 中添加 BanFlag 字段用于标识申请单状态
- 所有新增字段均支持 1=禁用 2=启用 的状态定义
This commit is contained in:
2025-12-19 17:22:10 +08:00
parent 3c1fa079cf
commit 6520d78067
3 changed files with 3 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ type RequestSearch struct {
CreatedAtStart *time.Time // 创建开始时间
CreatedAtEnd *time.Time // 创建结束时间
RequestIds []int64 // 申请单id
BanFlag int64 // 禁用标记 1=禁用 2=启用
}
type ReplyRequestList struct {
List []RequestItem `json:"list"`