30 lines
683 B
C#
30 lines
683 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.RES_TOBEALLCOTED")]
|
|
public partial class RES_TOBEALLCOTED
|
|
{
|
|
[Key]
|
|
public decimal TURNING_ID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string RESID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string RESOURCETAG { get; set; }
|
|
|
|
public decimal RESTYPEID { get; set; }
|
|
|
|
public decimal APPLYID { get; set; }
|
|
|
|
public decimal DIS_NUM { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
}
|
|
}
|