You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.1 KiB
64 lines
1.1 KiB
using cd.dapper.extension;
|
|
using System;
|
|
|
|
namespace EC.App.AutoWeight.Ini
|
|
{
|
|
/// <summary>
|
|
/// 汽车衡
|
|
/// Copyright (c) 2019-present 汽车衡
|
|
/// 创建人:lxc
|
|
/// 日 期: 2020-11-05 12:05:00
|
|
/// 描 述: base_Ini表的实体
|
|
/// </summary>
|
|
[Table("base_ini")]
|
|
public class IniEntity
|
|
{
|
|
#region Attr
|
|
|
|
/// <summary>
|
|
/// AutoInc
|
|
/// PK
|
|
/// </summary>
|
|
[Key]
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
public string SerialNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 月计划数量
|
|
/// </summary>
|
|
public int? PlanNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 运单数量
|
|
/// </summary>
|
|
public int? BillNumber { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
public DateTime? UpdateTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark { get; set; }
|
|
|
|
#endregion Attr
|
|
|
|
#region Extend
|
|
|
|
/// <summary>
|
|
/// 上传表格参数是否合法
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public bool IsFormValid()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
#endregion Extend
|
|
}
|
|
}
|