using SqlSugar;
using System;
using System.Linq;
using System.Text;
namespace MaterialTraceability.Entity.DAO
{
///
///
///
[SugarTable("COMPANY")]
public partial class ComPay
{
public ComPay(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName = "ID", IsPrimaryKey = true, IsIdentity = true)]
public int id {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName = "NAME")]
public string name {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName = "AGE")]
public int age {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "ADDRESS")]
public string address {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName = "SALARY")]
public double? salary {get;set;}
}
}