tijian_tieying/web/dccdc.Models/special_company.cs

28 lines
591 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
{
/// <summary>
/// 特殊企业-不能在疾控体检的企业
/// </summary>
public class special_companyModel
{
/// <summary>
/// 主键ID
/// </summary>
public int id { get; set; }
/// <summary>
/// 企业名称
/// </summary>
public string company_name { get; set; }
/// <summary>
/// 状态是否
/// </summary>
public string status { get; set; }
}
}