/**
|
* 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
|
{
|
/// <summary>
|
/// 订单印刷文件
|
/// </summary>
|
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;
|
|
/// <summary>
|
/// 订单编号
|
/// </summary>
|
public int? OrderId { get { return _orderId; } set { _orderId = value; } }
|
/// <summary>
|
/// 文件名称
|
/// </summary>
|
public string FileName { get { return _fileName; } set { _fileName = value; } }
|
/// <summary>
|
/// 文件路径(服务器路径)
|
/// </summary>
|
public string FilePath { get { return _filePath; } set { _filePath = value; } }
|
/// <summary>
|
/// 文件大小
|
/// </summary>
|
public decimal? FileSize { get { return _fileSize; } set { _fileSize = value; } }
|
/// <summary>
|
/// 文件类型(后缀)
|
/// </summary>
|
public string FileType { get { return _fileType; } set { _fileType = value; } }
|
/// <summary>
|
/// 文件状态(0:未下载、1:已下载)
|
/// </summary>
|
public int? FileState { get { return _fileState; } set { _fileState = value; } }
|
/// <summary>
|
/// 上传时间
|
/// </summary>
|
public DateTime? UploadTime { get { return _uploadTime; } set { _uploadTime = value; } }
|
/// <summary>
|
/// 上传人编号
|
/// </summary>
|
public Guid UploaderId { get { return _uploaderId; } set { _uploaderId = value; } }
|
/// <summary>
|
/// 卖家编号
|
/// </summary>
|
public Guid SellerId { get { return _sellerId; } set { _sellerId = value; } }
|
/// <summary>
|
///// 客户端文件地址(用于续传)
|
///// </summary>
|
//public string ClientPath { get { return _clientPath; } set { _clientPath = value; } }
|
/// <summary>
|
/// 生效时间
|
/// </summary>
|
//public DateTime? ImpactTime { get { return _impactTime; } set { _impactTime = value; } }
|
|
|
}
|
}
|