28 lines
516 B
C#
28 lines
516 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace SA.Entity.zxdcrm_Models
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("a_month")]
|
|
public partial class AMonth
|
|
{
|
|
public AMonth(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true,ColumnName="yearmonth")]
|
|
public int Yearmonth {get;set;}
|
|
|
|
}
|
|
}
|