23 lines
755 B
C#
23 lines
755 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_ALLCOTELOG_DETAIL")]
|
|
public partial class RES_ALLCOTELOG_DETAIL
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
public decimal LOGID { get; set; }
|
|
public decimal TURNING_ID { get; set; }
|
|
[StringLength(18)]
|
|
public string RESID { get; set; }
|
|
public decimal? SALESID { get; set; }
|
|
public decimal? APPLYID { get; set; }
|
|
public DateTime? INDATE { get; set; }
|
|
public DateTime? OUTDATE { get; set; }
|
|
public decimal? DISUSERID { get; set; }
|
|
public DateTime? DISTIME { get; set; }
|
|
}
|
|
} |