1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.Network.FTPOperation
- {
- public class UpFTPServiceFileGroup
- {
- public string GuidKey { get; set; }
-
-
-
- public string OrderNumber { get; set; }
- public string ViceNumber { get; set; }
- public string SinceOrderNumber { get; set; }
-
-
-
- public string CusName { get; set; }
-
-
-
- public string DirFileType { get; set; }
-
-
-
- public string PhotoType { get; set; }
-
-
-
- public float totalSize { get; set; }
-
-
-
- public float processValue { get; set; }
-
-
-
- public string localServicePath { get; set; }
-
-
-
- public string physicsPath { get; set; }
-
-
-
- public bool bSuccess { get; set; }
-
-
-
- public int statusCode { get; set; }
-
-
-
- public int bOpenStatus { get; set; }
-
-
-
- public string errorMsg { get; set; }
- public string StartTime { get; set; }
- public string EndTime { get; set; }
- public List<UpFTPServiceFileItem> items = new List<UpFTPServiceFileItem>();
- public override string ToString()
- {
- return OrderNumber + " " + CusName;
- }
- }
- public class ExtendsUpFTPServiceFileGroup
- {
- public UpFTPServiceFileShop Parent { get; set; }
- public List<UpFTPServiceFileGroup> groupList = new List<UpFTPServiceFileGroup>();
- public UpFTPServiceFileGroup Group { get; set; }
- }
- }
|