|
|
@@ -48,6 +48,26 @@ namespace DataVAPI.Controllers |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// 折线图 |
|
|
|
/// </summary> |
|
|
|
[HttpGet] |
|
|
|
public JsonMsg<object> OrderLine(int Count) |
|
|
|
{ |
|
|
|
st = System.Reflection.MethodBase.GetCurrentMethod().Name; |
|
|
|
try |
|
|
|
{ |
|
|
|
FullScreenBasic fullScreen=new FullScreenBasic(); |
|
|
|
fullScreen.Count = Count; |
|
|
|
object retdata = orderProvider.OrderLine(fullScreen); |
|
|
|
return JsonMsg<object>.OK(retdata, st); |
|
|
|
} |
|
|
|
catch (System.Exception ex) |
|
|
|
{ |
|
|
|
return JsonMsg<object>.Error(null, st, ex.Message); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary> |
|
|
|
/// 区域销售 |
|
|
|
/// </summary> |
|
|
|