using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using System.Net.NetworkInformation;
using System.Text;
using System.Threading.Tasks;
namespace Bussiness.Model.SystemData
{
///
/// 系统配置表
///
public class sys_config
{
///
/// 主键id
///
[Key]
public long config_id { get; set; }
///
/// 配置类型
///
[StringLength(50)]
public string type { get; set; }
///
/// 账务状态(0-关帐,1-开帐)
public bool financeis_close { get; set; }
///
/// 下一个开帐日期
///
public DateTime next_open_date { get; set; }
///
/// 是否显示(0不显示、1显示)
public bool is_show { get; set; }
}
}