username@email.com
2022-01-21 b18a7c8e54b51a5caa400e55cb8cc428c0301a0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/**  
* 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; } }
 
 
    }
}