20 lines
432 B
C#
20 lines
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Song.Site.Ext.SyncData.Entity
|
|
{
|
|
public class zybJsonResultForEnterprise
|
|
{
|
|
public string code;
|
|
public string datatype;
|
|
public List<zybEnterprise> data;
|
|
}
|
|
public class zybJsonResultForYG
|
|
{
|
|
public string code;
|
|
public string datatype;
|
|
public List<zybYgxx> data;
|
|
}
|
|
} |