22 lines
490 B
C#
22 lines
490 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.SOFT_ACTIVEDETAIL")]
|
|
public partial class SOFT_ACTIVEDETAIL
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal ORDERID { get; set; }
|
|
|
|
public decimal MODULEID { get; set; }
|
|
|
|
public decimal DAYS { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
}
|
|
}
|