Files

10 lines
234 B
Go
Raw Permalink Normal View History

2026-04-02 11:51:44 +08:00
package api_feature
2026-06-11 13:06:54 +08:00
// MappingStatus 字段映射状态(暂未使用,保留供未来扩展)
2026-04-02 11:51:44 +08:00
type MappingStatus string
const (
2026-06-11 13:06:54 +08:00
MappingStatusMapped MappingStatus = "mapped"
MappingStatusUnmapped MappingStatus = "unmapped"
2026-04-02 11:51:44 +08:00
)