using System; using System.Collections.Generic; using System.Linq; using System.Web; using Microsoft.SqlServer.Server; namespace GSMarketSys.Models.Dto { public class CheckDataUploadDto { public string MarketID { get; set; } public int IsSelf { get; set; } public string CheckUnit { get; set; } public string CheckUser { get; set; } public int CheckProjectTypeID { get; set; } public string StandardValue { get; set; } public string StandardUnit { get; set; } public string CheckValue { get; set; } public string CheckResult { get; set; } public DateTime CheckTime { get; set; } public DateTime UploadTime { get; set; } public string SampleId { get; set; } public string SampleName { get; set; } public string StallNo { get; set; } public string Memo { get; set; } } public class YtCheckDataUploadDto { public DateTime CheckTime { get; set; } //public DateTime UploadTime { get; set; } public string CheckedMarketName { get; set; } public string CheckedUnitName { get; set; } public string StallNumber { get; set; } public string CheckedMan { get; set; } public string CheckBigItem { get; set; } public string CheckLittleItem { get; set; } public string CheckBigVariety { get; set; } public string CheckLittleVariety { get; set; } public string CheckResult { get; set; } public string CheckValue { get; set; } public string CheckLimit { get; set; } public string CheckRecord { get; set; } public string CheckManufacturer{ get; set; } public string CheckDevice{ get; set; } public string CheckMan { get; set; } public string CheckUnitName { get; set; } } }