sunpengfei
7 天以前 e2d2994059dc80b71f0a216c5a959032ea73a439
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
using Aop.Api.Domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 企业钱包-资金二级商户KYB代进件单-附件
    /// </summary>
    public class EnterpriseWalletExpandindirectOrderFile : CommonEntity
    {
        /// <summary>
        /// 代进件单Id
        /// </summary>
        public Guid OrderId { get; set; }
 
        /// <summary>
        /// 代进件单
        /// </summary>
        public EnterpriseWalletExpandindirectOrder Order { get; set; }
 
        /// <summary>
        /// 类型
        /// </summary>
        public EnumEnterpriseWalletExpandindirectOrderFileType Type { get; set; }
 
        /// <summary>
        /// 附件
        /// </summary>
        public string File { get; set; }
    }
}