using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using SqlSugar;
namespace IStation.Entity
{
///
/// 员工备注
///
[SugarTable("employee_remark")]
public class EmployeeRemark :CorpTraceEntity, System.ICloneable,ISorter,IUseStatus
{
///
///
///
public EmployeeRemark() { }
///
///
///
public EmployeeRemark(EmployeeRemark rhs):base(rhs)
{
this.TargetType = rhs.TargetType;
this.TargetID = rhs.TargetID;
this.EmployeeID = rhs.EmployeeID;
this.Remark = rhs.Remark;
this.SortCode = rhs.SortCode;
this.UseStatus = rhs.UseStatus;
this.Description = rhs.Description;
}
///
/// 目标类型
///
public string TargetType
{
get { return _targettype; }
set { _targettype = value; }
}
private string _targettype;
///
/// 目标标识
///
public long TargetID
{
get { return _targetid; }
set { _targetid = value; }
}
private long _targetid;
///
/// 员工标识
///
public long EmployeeID
{
get { return _employeeid; }
set { _employeeid = value; }
}
private long _employeeid;
///
/// 备注信息
///
public string Remark
{
get { return _remark; }
set { _remark = value; }
}
private string _remark;
///
/// 排序码
///
public int SortCode
{
get { return _sortcode; }
set { _sortcode = value; }
}
private int _sortcode;
///
/// 使用状态
///
public int UseStatus
{
get { return _usestatus; }
set { _usestatus = value; }
}
private int _usestatus;
///
/// 备注
///
public string Description
{
get { return _description; }
set { _description = value; }
}
private string _description;
///
///
///
public EmployeeRemark Clone()
{
return (EmployeeRemark)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}