You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
867 B
37 lines
867 B
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
public class V_PlanMonth
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
public int ID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Code { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string SupplierCode { get; set; }
|
|
|
|
public DateTime AddTime { get; set; }
|
|
|
|
public DateTime? SendTime { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Name { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Ver { get; set; }
|
|
|
|
public string FileName { get; set; }
|
|
|
|
public string UserName { get; set; }
|
|
|
|
public string IsSend { get; set; }
|
|
|
|
public string VendName { get; set; }
|
|
}
|
|
}
|
|
|