36 lines
828 B
C#
36 lines
828 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.SOFT_BIGPRODUCT")]
|
|
public partial class SOFT_BIGPRODUCT
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
public decimal PRODUCTID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(50)]
|
|
public string PRODUCTCODE { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[StringLength(50)]
|
|
public string PRODUCTNAME { get; set; }
|
|
|
|
public short? ISDISABLED { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[StringLength(200)]
|
|
public string MEMO { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public decimal? USECLIENT { get; set; }
|
|
}
|
|
}
|