using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.YiDaSyncNC.Dtos
{
///
///
///
[SugarTable("SyncRecord_GYS")]
public partial class SyncRecord_GYS
{
public SyncRecord_GYS()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
public string DataId { get; set; }
public string DataJson { get; set; }
public string CreateTime { get; set; }
public string ModifyTime { get; set; }
public bool Ps { get; set; }
}
}