37 lines
864 B
C#
37 lines
864 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(100)]
|
|
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; }
|
|
}
|
|
}
|