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.
 
 
 
 
 

24 lines
738 B

namespace CK.SCP.Models.ScpEntity
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
public partial class TB_PLAN_DETAIL:RecordEntity
{
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int UID { get; set; }
public string PlanId { get; set; }
public string PlanPieriod { get; set; }
public System.DateTime BeginDate { get; set; }
public System.DateTime EndDate { get; set; }
public string PartCode { get; set; }
public decimal Qty { get; set; }
public int State { get; set; }
public string Remark { get; set; }
}
}