ComplianceServer/oldcode/Model/Entity/SOFT_PRODUCT.cs

36 lines
814 B
C#

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