26 lines
520 B
C#
26 lines
520 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
|
|
namespace SOH.Entities.DTO
|
|
{
|
|
[Serializable()]
|
|
[DataContract(IsReference = true)]
|
|
public class dto_htfz
|
|
{
|
|
/// <summary>
|
|
/// 客户名称
|
|
/// </summary>
|
|
[DataMember]
|
|
public string khmc { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分组名称
|
|
/// </summary>
|
|
[DataMember]
|
|
public string fzmc { get; set; }
|
|
}
|
|
}
|