using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Sugar.Enties
{
///
///
///
[SugarTable("usersindepts")]
public partial class usersindepts
{
public usersindepts(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string staffcode {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string deptcode {get;set;}
}
}