ComplianceServer/oldcode/Model/Entity/BAS_MON_GROUPLEADER.cs

58 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.BAS_MON_GROUPLEADER")]
public class BAS_MON_GROUPLEADER
{
/// <summary>
/// 员工id
/// </summary>
[Key]
public decimal INNERUSERID { get; set; }
/// <summary>
/// 组id
/// </summary>
public decimal INNERGROUPID { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CTIME { get; set; }
/// <summary>
/// 创建人
/// </summary>
public decimal? CREATEUSER { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public DateTime? UTIME { get; set; }
/// <summary>
/// 修改人
/// </summary>
public decimal? UPDATEUSER { get; set; }
/// <summary>
/// 组长类型 10第一组长 12第二组长 20大组主管30部门级主管40经理级主管
/// </summary>
public decimal? LEADERTYPE { get; set; }
/// <summary>
/// 结算年
/// </summary>
public decimal? BALANCEYEAR { get; set; }
/// <summary>
/// 结算月
/// </summary>
public decimal? BALANCEMONTH { get; set; }
/// <summary>
/// 月结码
/// </summary>
[Required]
public DateTime BALANCECODE { get; set; }
/// <summary>
/// 结算时间
/// </summary>
public DateTime? BALANCEDATE { get; set; }
}
}