tijian_tieying/web/dccdc.Models/dicsModel.cs

20 lines
471 B
C#
Raw Permalink Normal View History

2025-02-20 12:14:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace dccdc.Models
{
public class dicsModel
{
public int id { get; set; }
public string key { get; set; }
public string value { get; set; }
public string editorValue { get; set; } //富文本框传值
public string remark { get; set; }
public DateTime? addtime { get; set; }
public byte zt { get; set; }
}
}