using System;
namespace XGL.Models
{
public class filedatasModel
{
///
///Id
///
public int Id { get;set; }
///
///typeNo
///
public string typeNo { get;set; }
///
///sysFileNa
///
public string sysFileNa { get;set; }
///
///preFileNa
///
public string preFileNa { get;set; }
///
///fileSize
///
public int fileSize { get;set; }
///
///urlPath
///
public string urlPath { get;set; }
///
///absolutPath
///
public string absolutPath { get;set; }
///
///isImage
///
public bool isImage { get;set; }
///
///imageWidth
///
public int imageWidth { get;set; }
///
///imageHeight
///
public int imageHeight { get;set; }
///
///usingNum
///
public int usingNum { get;set; }
///
///useEmpId
///
public int useEmpId { get;set; }
///
///isPerson
///
public bool isPerson { get;set; }
///
///mark
///
public string mark { get;set; }
///
///IsDeleted
///
public bool IsDeleted { get;set; }
///
///CreateTime
///
public string CreateTime { get;set; }
///
///CreateId
///
public int CreateId { get;set; }
///
///CreateBy
///
public string CreateBy { get;set; }
///
///ModifyTime
///
public string ModifyTime { get;set; }
///
///ModifyId
///
public int ModifyId { get;set; }
///
///ModifyBy
///
public string ModifyBy { get;set; }
}
}