using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HH.YiDaSyncNC.Dtos { public class YiDaResDto { public bool bSuccess { get; set; } public DateTime syncTime { get; set; } public string ncNo { get; set; } public string log { get; set; } public string bNeedSync { get; set; } = "N"; } }