123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- using System;
- using System.Collections.Generic;
- namespace MySystem
- {
-
-
-
- public class MakerShopAdds
- {
- public int shcount { get; set; }
- public int ckcount { get; set; }
- }
-
-
-
- public class MakerOpenMachines
- {
- public string ActivationTime { get; set; }
- public string productName { get; set; }
- public string realname { get; set; }
- public int count { get; set; }
- }
-
-
-
- public class Exhibitions
- {
- public decimal WithdrawAmount { get; set; }
- public int count { get; set; }
- public decimal yearsum { get; set; }
- public int yearcount { get; set; }
- public decimal quartersum { get; set; }
- public int quartercount { get; set; }
- public decimal monthsum { get; set; }
- public int monthcount { get; set; }
- public decimal nowsum { get; set; }
- public int nowcount { get; set; }
- }
-
-
-
- public class OpenMachines
- {
- public int userId { get; set; }
- public string realName { get; set; }
- public decimal openCount { get; set; }
- }
-
-
-
- public class FlowingWater
- {
- public int UserId { get; set; }
- public string RealName { get; set; }
- public decimal Sum { get; set; }
- }
-
-
-
- public class InCome
- {
- public string RealName { get; set; }
- public decimal Sum { get; set; }
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public class ModelType
- {
- public string name { get; set; }
- public int count { get; set; }
- }
-
-
-
- public class ModelTypeTrade
- {
- public string name { get; set; }
- public decimal sum { get; set; }
- }
- }
|