using Newtonsoft.Json;
namespace NewPdaSqlServer.Dto.Simple;
///
/// ²Ëµ¥ÊµÌåDTO - ÓÃÓÚÁбíչʾ
/// ÓëJava°æ±¾MesSimplesimple×Ö¶ÎÍêȫһÖÂ
///
public class MesSimpleDto
{
///
/// ×ÔÔöÖ÷¼üID
///
[JsonProperty("id")]
public long Id { get; set; }
///
/// ÊÇ·ñΪ¸ù½Úµã (0±íʾΪ¸ù½Úµã)
///
[JsonProperty("isTop")]
public int? IsTop { get; set; }
///
/// ¸¸½Úµãid
///
[JsonProperty("fid")]
public long? Fid { get; set; }
///
/// Ãû³Æ
///
[JsonProperty("title")]
public string? Title { get; set; }
///
/// Ó¢ÎÄÃû
///
[JsonProperty("field")]
public string? Field { get; set; }
///
/// µØÖ·
///
[JsonProperty("href")]
public string? Href { get; set; }
///
/// ½ÚµãÊÇ·ñ³õʼչ¿ª (0Ϊ²»Õ¹¿ª£¬1Ϊչ¿ª)
///
[JsonProperty("spread")]
public int? Spread { get; set; }
///
/// ½ÚµãÊÇ·ñΪչʾ (0Ϊչʾ£¬1Ϊ²»Õ¹Ê¾)
///
[JsonProperty("disabled")]
public int? Disabled { get; set; }
///
/// ÂÖ²¥Ê±¼ä(Ãë)
///
[JsonProperty("lbtime")]
public int? Lbtime { get; set; }
}