1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- using System.Collections.Generic;
- namespace Gs.DataPush.WebApi.ApiService
- {
- public class webService
- {
- public head head { get; set; }
- public request request { get; set; }
- }
- public class head
- {
- public string CardIndex { get; set; } = "";
- public string marketCode { get; set; } = "";
- public string marketName { get; set; } = "";
- public string tokenNo { get; set; } = "";
- }
- public class request
- {
- public List<QuickCheckItemJC> dataList { get; set; }
- }
- public class QuickCheckItemJC
- {
- public string JCCode { get; set; } = "";
- public string scCardIndex { get; set; } = "";
- public string scLicenseNo { get; set; } = "";
- public string scUnitName { get; set; } = "";
- public string DABH { get; set; } = "";
- public string PositionNo { get; set; } = "";
- public string Name { get; set; } = "";
- public string MarketType { get; set; } = "";
- public string SubItemCode { get; set; } = "";
- public string SubItemName { get; set; } = "";
- public string QuickCheckItemCode { get; set; } = "";
- public string QuickCheckSubItemCode { get; set; } = "";
- public string QuickCheckDate { get; set; } = "";
- public string QuickCheckResult { get; set; } = "";
- public string QuickCheckResultValue { get; set; } = "";
- public string QuickCheckResultValueUnit { get; set; } = "";
- public string QuickCheckResultValueCKarea { get; set; } = "";
- public string QuickCheckResultDependOn { get; set; } = "";
- public string QuickCheckRemarks { get; set; } = "";
- public string QuickChecker { get; set; } = "";
- public string QuickReChecker { get; set; } = "";
- public string QuickCheckUnitId { get; set; } = "";
- public string QuickCheckUnitName { get; set; } = "";
- public string JCManufactor { get; set; } = "";
- public string JCModel { get; set; } = "";
- public string JCSN { get; set; } = "";
- public string ReviewIs { get; set; } = "";
- }
- public class YtMarketInfo
- {
- public string CardIndex { get; set; } = "";
- public string LicenseNo { get; set; } = "";
- public string MarketName { get; set; } = "";
- public int MarketRef { get; set; }
- public string Abbreviation { get; set; }
- }
- public class YtMarketSellerInfo
- {
- public string PositionDistrictName { get; set; }
- public string PositionNo { get; set; }
- public string IsOperators { get; set; }
- public string scLicenseNo { get; set; }
- public string DABH { get; set; }
- public string scUnitName { get; set; }
- public string Contactor { get; set; }
- public string ContactTel { get; set; }
-
-
- }
- }
|