init commit
This commit is contained in:
47
20220330_Vote/Ewide.RoadFlow/Entity/rf_workdate.cs
Normal file
47
20220330_Vote/Ewide.RoadFlow/Entity/rf_workdate.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
//----------rf_workdate开始----------
|
||||
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
//using System.Data.Entity.ModelConfiguration;
|
||||
using System.Runtime.Serialization;
|
||||
using Furion.JsonSerialization;
|
||||
namespace RoadFlow.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据表实体类:rf_workdate
|
||||
/// </summary>
|
||||
[Table("rf_workdate")]
|
||||
[Serializable]
|
||||
public partial class rf_workdate: BaseEntity {
|
||||
/// <summary>
|
||||
/// 工作日
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="工作日")]
|
||||
[Key]
|
||||
[Column("WorkDay")]
|
||||
[DataMember]
|
||||
public DateTime WorkDay {get;set;}
|
||||
/// <summary>
|
||||
/// 0节假日 1工作日
|
||||
/// </summary>
|
||||
|
||||
[Display(Name="0节假日 1工作日")]
|
||||
[Column("IsWork")]
|
||||
[DataMember]
|
||||
public int IsWork {get;set;}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return JSON.Serialize(this);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
//----------rf_workdate结束----------
|
||||
|
||||
|
||||
Reference in New Issue
Block a user