35 lines
941 B
C#
35 lines
941 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
namespace SA.Entity.zxdcrm_audit_Models
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarTable("mon_finish")]
|
||
public class mon_finish
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
|
||
public int id { get; set; }
|
||
/// <summary>
|
||
/// 结算月份
|
||
///</summary>
|
||
[SugarColumn(ColumnName="month" )]
|
||
public int? month { get; set; }
|
||
/// <summary>
|
||
/// 结算最后一天时间(导出使用)
|
||
///</summary>
|
||
[SugarColumn(ColumnName="day" )]
|
||
public DateTime? day { get; set; }
|
||
/// <summary>
|
||
/// 1:已结;0:未结
|
||
///</summary>
|
||
[SugarColumn(ColumnName="status" )]
|
||
public int? status { get; set; }
|
||
}
|
||
}
|