using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.YiDaSyncNC.Dtos.NC
{
///
/// ID对照表
///
[SugarTable("xx_idcontrast")]
public class xx_idcontrast
{
public xx_idcontrast()
{
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true)]
public string pk_idcontra { get; set; }
public string bill_type { get; set; }
public Int16? dr { get; set; } = 0;
public string file_id { get; set; }
public string isdelete { get; set; }
public string pk_bill { get; set; }
public string sub_mark { get; set; }
public string sub_mark_b { get; set; }
public string ts { get; set; } = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
}
}