ComplianceServer/oldcode/Model/Entity/SOFT_ALLOCATERESLOG.cs

37 lines
863 B
C#

namespace WX.CRM.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.SOFT_ALLOCATERESLOG")]
public partial class SOFT_ALLOCATERESLOG
{
[Key]
public decimal PKID { get; set; }
[Required]
[StringLength(50)]
public string SOFTNAME { get; set; }
[Required]
[StringLength(18)]
public string RESID { get; set; }
public decimal? ALLOCATETYPE { get; set; }
public decimal? SALESTYPE { get; set; }
public decimal? ORGSALESID { get; set; }
public decimal? NEWSALESID { get; set; }
public decimal? OPUSERID { get; set; }
public DateTime? OPTIME { get; set; }
[StringLength(200)]
public string OPREMART { get; set; }
}
}