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.
39 lines
1.0 KiB
39 lines
1.0 KiB
namespace Warehouse.Models.mesMysqlModel
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("js_mes.df_makecoderule")]
|
|
public partial class df_makecoderule
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int RuleID { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int SubID { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string ParaName { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string ParaValue { get; set; }
|
|
|
|
public DateTime? CreateDate { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string Remark { get; set; }
|
|
|
|
[StringLength(45)]
|
|
public string SampleCode { get; set; }
|
|
|
|
[StringLength(5)]
|
|
public string Flg { get; set; }
|
|
}
|
|
}
|
|
|