using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WMS.BZModels.Dto.PT { public partial class BillLogDto { /// /// Id /// public string Id { get; set; } /// /// TypeNum /// public int TypeNum { get; set; } /// /// AppTypeNum /// public int AppTypeNum { get; set; } /// /// ContentText /// public string ContentText { get; set; } /// /// Method /// public string Method { get; set; } /// /// IsSucc /// public int IsSucc { get; set; } /// /// ReqUrl /// public string ReqUrl { get; set; } /// /// MethodText /// public string MethodText { get; set; } /// /// ParamJson /// public string ParamJson { get; set; } /// /// Ip /// public string Ip { get; set; } /// /// Host /// public string Host { get; set; } /// /// Browser /// public string Browser { get; set; } /// /// RunMs /// public long? RunMs { get; set; } /// /// LogTime /// public DateTime LogTime { get; set; } /// /// LogWho /// public string LogWho { get; set; } } public class BillLogQueryDto : PagerInfo { /// /// TypeNum /// public int TypeNum { get; set; } /// /// AppTypeNum /// public int AppTypeNum { get; set; } public DateTime StartTime { get; set; } public DateTime EndTime { get; set; } public string LogWho { get; set; } } }