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

29 lines
616 B

using Forks.EnterpriseServices.DomainObjects2;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ButcherFactory.BO
{
[KeyField("ID", KeyGenType.identity)]
public abstract class SyncBill
{
public long ID { get; set; }
public int RowVersion { get; set; }
[DbColumn(DbType = SqlDbType.DateTime)]
public DateTime CreateTime { get; set; }
public long UserID { get; set; }
public bool Sync { get; set; }
public bool Delete { get; set; }
public long? ServerID { get; set; }
}
}