/** * LF_OrderFile.cs * * 功 能: 订单文件类 * 类 名: LF_OrderFile * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── * V0.01 2013-6-17 14:50 吴崎均 初版 * * * * */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.Infrastructure.Domain; namespace CY.Model { /// /// 订单印刷文件 /// public partial class LF_OrderFile : IAggregateRoot { private int? _orderId; private string _fileName; private string _filePath; private decimal? _fileSize; private string _fileType; private int? _fileState; private DateTime? _uploadTime; private Guid _uploaderId; private Guid _sellerId; //private string _clientPath; //private DateTime? _impactTime; /// /// 订单编号 /// public int? OrderId { get { return _orderId; } set { _orderId = value; } } /// /// 文件名称 /// public string FileName { get { return _fileName; } set { _fileName = value; } } /// /// 文件路径(服务器路径) /// public string FilePath { get { return _filePath; } set { _filePath = value; } } /// /// 文件大小 /// public decimal? FileSize { get { return _fileSize; } set { _fileSize = value; } } /// /// 文件类型(后缀) /// public string FileType { get { return _fileType; } set { _fileType = value; } } /// /// 文件状态(0:未下载、1:已下载) /// public int? FileState { get { return _fileState; } set { _fileState = value; } } /// /// 上传时间 /// public DateTime? UploadTime { get { return _uploadTime; } set { _uploadTime = value; } } /// /// 上传人编号 /// public Guid UploaderId { get { return _uploaderId; } set { _uploaderId = value; } } /// /// 卖家编号 /// public Guid SellerId { get { return _sellerId; } set { _sellerId = value; } } /// ///// 客户端文件地址(用于续传) ///// //public string ClientPath { get { return _clientPath; } set { _clientPath = value; } } /// /// 生效时间 /// //public DateTime? ImpactTime { get { return _impactTime; } set { _impactTime = value; } } } }