tijian_jichuang/Code/Entities/DTO/dto_tjxx.cs
2025-02-20 11:54:48 +08:00

24 lines
579 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}