24 lines
579 B
C#
24 lines
579 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Runtime.Serialization;
|
||
|
||
namespace SOH.Entities.DTO
|
||
{
|
||
/// <summary>
|
||
/// 用户级别,0普通,1VIP,2贵宾
|
||
/// </summary>
|
||
[Serializable()]
|
||
[DataContract(IsReference = true)]
|
||
public class dto_tjxx
|
||
{
|
||
public int htbm { get; set; }
|
||
public int khbm { get; set; }
|
||
public string khmc { get; set; }
|
||
public short nd { get; set; }
|
||
public string htbj { get; set; }
|
||
public string ywdbdm { get; set; }
|
||
}
|
||
}
|