tijian_jichuang/Code/Entities/DTO/dto_tjxx.cs

24 lines
579 B
C#
Raw Normal View History

2025-02-20 11:54:48 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization;
namespace SOH.Entities.DTO
{
/// <summary>
/// 用户级别0普通1VIP2贵宾
/// </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; }
}
}