Files
zszq-trs/Framework/YLErp.Core/DBModels/eod_file.cs
T
2024-05-09 14:06:26 +08:00

47 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.DBModels
{
/// <summary>
/// 收盘后文件生成记录表
/// </summary>
[Table("eod_file")]
public class eod_file : DBModelWithOperator
{
/// <summary>
/// 收盘日期
/// </summary>
public DateTime ValueDate { get; set; }
/// <summary>
/// 文件名称
/// </summary>
public string FileName { get; set; }
/// <summary>
/// 文件类型
/// </summary>
public int FileType { get; set; }
/// <summary>
/// 文件路径
/// </summary>
public string FilePath { get; set; }
/// <summary>
/// 失败原因
/// </summary>
public string FailMsg { get; set; }
/// <summary>
/// 状态
/// </summary>
public int Status { get; set; }
}
}