You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
585 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Entity
{
public class UploadStoreCostRevenueResult
{
/// <summary>
/// 服务端ID
/// </summary>
[JsonProperty(PropertyName = "revenueId")]
public string RevenueId { get; set; }
/// <summary>
/// 上传日期
/// </summary>
[JsonProperty(PropertyName = "uploadDate")]
public DateTime UploadDate { get; set; } = Convert.ToDateTime(DateTime.Now.ToString("s"));
}
}