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

42 lines
959 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.BAS_ROOM")]
public partial class BAS_ROOM
{
[Key]
public decimal ROOMID { get; set; }
[Required]
[StringLength(6)]
public string ROOMCODE { get; set; }
[StringLength(50)]
public string ROOMNAME { get; set; }
public decimal ROOMTYPE { get; set; }
public decimal ROOMMARKETTYPE { get; set; }
public decimal? ISSHOW { get; set; }
public decimal? ISDELETED { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public decimal? UPDATEUSER { get; set; }
[StringLength(100)]
public string MEMO { get; set; }
public decimal? SORTID { get; set; }
}
}