36 lines
647 B
C#
36 lines
647 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Face.Domain.Application.FaceAll
|
|
{
|
|
public class fileawholelog
|
|
{
|
|
public int id { get; set; }
|
|
public string filename { get; set; }
|
|
|
|
public string md5 { get; set; }
|
|
|
|
|
|
|
|
public DateTime creationtime { get; set; }
|
|
|
|
|
|
|
|
public int filetype { get; set; }
|
|
|
|
public int hotelid { get; set; }
|
|
|
|
public int roomid { get; set; }
|
|
|
|
|
|
public int type { get; set; }
|
|
|
|
public string remark { get; set; }
|
|
public double firmwaresize { get; set; }
|
|
|
|
}
|
|
}
|