ComplianceServer/oldcode/Model/Entity/ORD_MEMOSTYLE.cs

22 lines
497 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.ORD_MEMOSTYLE")]
public partial class ORD_MEMOSTYLE
{
[Key]
public decimal STYLEID { get; set; }
[StringLength(20)]
public string STYLENAME { get; set; }
[StringLength(30)]
public string STYLECODE { get; set; }
public DateTime? CTIME { get; set; }
}
}