Files
number_zj/20220330_Vote/Ewide.RoadFlow/Entity/rf_workdate.cs
2022-03-30 17:54:33 +08:00

47 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//----------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结束----------