TG.WXCRM.V4/Model/Entity/BAS_DAILYMEMU.cs

24 lines
537 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_DAILYMEMU")]
public partial class BAS_DAILYMEMU
{
[Key]
public decimal PKID { get; set; }
public decimal INNERUSERID { get; set; }
public decimal MENUID { get; set; }
public decimal? SORTID { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
}
}