You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
948 B
C#
43 lines
948 B
C#
using Myshipping.Core;
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Myshipping.Core.Service
|
|
{
|
|
/// <summary>
|
|
/// 往来单位地址
|
|
/// </summary>
|
|
public class DjyCustomerAddrInput
|
|
{
|
|
/// <summary>
|
|
/// 客户Id
|
|
/// </summary>
|
|
public long CustomerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地址简称
|
|
/// </summary>
|
|
public string AddrName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地址详情
|
|
/// </summary>
|
|
public string Addr { get; set; }
|
|
|
|
/// <summary>
|
|
/// 地址类型 factory-工厂地址
|
|
/// </summary>
|
|
public string AddrType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 联系人
|
|
/// </summary>
|
|
public string ContactName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 联系电话
|
|
/// </summary>
|
|
public string ContactTel { get; set; }
|
|
}
|
|
}
|