123456789101112131415161718192021 |
- // Copyright 2019 getensh.com. All rights reserved.
- // Use of this source code is governed by getensh.com.
- package consts
- const (
- PageSize = 10
- )
- // 定义数据来源大类
- const (
- ODSPROVIDERLOG = "provider-log" // 数据源日志
- ODSGDLOG = "gd-log" // gd日志
- ODSMANUALAMENDMENT = "manual" // 人工修正
- ODSOFFLINEIMPORT = "offline-import" // 离线导入
- )
- const (
- FromDb = 1
- FromExcel = 2
- )
|