ComplianceServer/oldcode/Model/Entity/SOFT_ACTIVE.cs

46 lines
1.3 KiB
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.SOFT_ACTIVE")]
public partial class SOFT_ACTIVE
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public SOFT_ACTIVE()
{
SOFT_ACTIVEMODULE = new HashSet<SOFT_ACTIVEMODULE>();
}
[Key]
public decimal PRODUCTID { get; set; }
[Required]
[StringLength(50)]
public string PRODUCTCODE { get; set; }
[Required]
[StringLength(50)]
public string PRODUCTNAME { get; set; }
public short ISSHOW { get; set; }
[Required]
[StringLength(200)]
public string MEMO { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public decimal? UPDATEUSER { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<SOFT_ACTIVEMODULE> SOFT_ACTIVEMODULE { get; set; }
}
}