TG.WXCRM.V4/Model/MAP/BAS_INNERUSERGROUP.cs

29 lines
908 B
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
{
public partial class BAS_INNERUSERGROUP
{
[RegularExpression("[0-9]*", ErrorMessage = "")]
[NotMapped]
public Nullable<decimal> ma_GID { get { return this.GID; } set { this.GID = value; } }
[Required(ErrorMessage = "调动时间不能为空!")]
[NotMapped]
public DateTime? inDate { get; set; }
}
public class Bas_InnerUserGroup_View
{
public decimal INNERUSERID { get; set; }
public decimal? DEPTID { get; set; }
public decimal? GID { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public decimal? UPDATEUSER { get; set; }
}
}