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.

24 lines
565 B

using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using Utils.Datas;
using WeighBusiness.Utils;
namespace WeighBusiness.BO
{
public class WpfUser : Base
{
public override string TableName { get { return TableNames.ERP员工; } }
public long WpfUser_ID { get; set; }
public string Employee_Code { get; set; }
public string WpfUser_Name { get; set; }
public long? Department_ID { get; set; }
public long? Employee_ID { get; set; }
public string RowVersion { get; set; }
}
}