TG.WXCRM.V4/Core.DTO/Ord/Client_DeliverMethodDTO.cs

30 lines
1015 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CRM.Core.DTO.Ord
{
public class Client_DeliverMethodDTO
{
public int Order_Id { get; set; }
public int Deliver_Type { get; set; }
public string Mail_Name { get; set; }
public string Mail_Phone { get; set; } = "";
public string Province { get; set; } = "";
public string City { get; set; } = "";
public string Area { get; set; } = "";
public string Address { get; set; } = "";
//日志信息
public string Deliver_url_Log { get; set; } = "";
public string Ip { get; set; } = "";
public string File_Path { get; set; } = "";
public string File_Name { get; set; } = "";
public string Mail_Type { get; set; } = "";
public string Mail_Number { get; set; } = "";
public string User_Name { get; set; } = "";
public bool IsLog { get; set; }
}
}