ComplianceServer/oldcode/Model/Entity/L2_SOFT_BIGPRODUCT.cs

34 lines
789 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.L2_SOFT_BIGPRODUCT")]
public partial class L2_SOFT_BIGPRODUCT
{
[Key]
public decimal PRODUCTID { get; set; }
//[Required]
[StringLength(50)]
public string PRODUCTCODE { get; set; }
//[Required]
[StringLength(50)]
public string PRODUCTNAME { get; set; }
public short? ISDISABLED { get; set; }
//[Required]
[StringLength(200)]
public string MEMO { get; set; }
public DateTime? CTIME { get; set; }
public decimal USECLIENT { get; set; }
public decimal? GROUPID { get; set; }
}
}