hao
5 天以前 c5f74c8471358dbfb6977f4d9d392b656c31a16a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;
 
namespace MES.Service.Modes
{
    public class QamftpDto
    {
        public decimal Id { get; set; }
        public string ItemNo { get; set; }
        public string Ftype { get; set; }
        public string Fattach { get; set; }
        public string Fversion { get; set; }
        public string Fdate { get; set; }
        public string CreateBy { get; set; }
        public string CreateDate { get; set; }
        public string Company { get; set; }
        public string Factory { get; set; }
        public string ReleaseNo { get; set; }
        public int? F_type { get; set; }
        public string LastupdateBy { get; set; }
        public DateTime? LastupdateDate { get; set; }
        public decimal? ItemId { get; set; }
    }