SACenter/SA.Entity/zxdcrm_audit_Models/MonFinish.cs

35 lines
941 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}