修复导出数据不全的问题
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 7m41s
All checks were successful
构建并部署到测试环境(无 SSH) / build-and-deploy (push) Successful in 7m41s
This commit is contained in:
@@ -197,15 +197,15 @@ func (s *IotCardDataSource) applyFilters(ctx context.Context, query *gorm.DB, pa
|
|||||||
}
|
}
|
||||||
|
|
||||||
type iotCardExportRow struct {
|
type iotCardExportRow struct {
|
||||||
ICCID string
|
ICCID string `gorm:"column:iccid"`
|
||||||
MSISDN string
|
MSISDN string `gorm:"column:msisdn"`
|
||||||
DeviceVirtualNo string
|
DeviceVirtualNo string `gorm:"column:device_virtual_no"`
|
||||||
CarrierName string
|
CarrierName string `gorm:"column:carrier_name"`
|
||||||
ShopName string
|
ShopName string `gorm:"column:shop_name"`
|
||||||
DeviceName string
|
DeviceName string `gorm:"column:device_name"`
|
||||||
RealNameStatus int
|
RealNameStatus int `gorm:"column:real_name_status"`
|
||||||
FirstRealnameAt *time.Time
|
FirstRealnameAt *time.Time `gorm:"column:first_realname_at"`
|
||||||
NetworkStatus int
|
NetworkStatus int `gorm:"column:network_status"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func formatRealNameVerified(status int) string {
|
func formatRealNameVerified(status int) string {
|
||||||
|
|||||||
Reference in New Issue
Block a user