using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Microsoft.EntityFrameworkCore; namespace Ewide.Application { [Table("bs_house_task_check_record")] [Comment("房屋任务审核记录表")] public class BsHouseTaskCheckRecord : Core.DEntityBase { /// /// 任务Id /// [Comment("任务Id")] [MaxLength(36)] public string TaskId { get; set; } /// /// 通过1;退回-1 /// [Comment("通过3;退回-1")] public int PassOrBack { get; set; } /// /// 审核内容 /// [Comment("审核内容")] [MaxLength(500)] public string Content { get; set; } } }