using MadRunFabric.Common; using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace MadRunFabric.Model { public class Distri_Workorder_Evaluate : IBaseModel { /// /// id /// [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 项目id /// [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string projectid { get; set; } /// /// 工单id ------------------------------------------- /// [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string woid { get; set; } /// /// 工单编号 /// public string wocode { get; set; } /// /// 渠道来源 1表示PC 2表示安卓 3表示IOS 4表示微信 5表示系统 /// public int channel { get; set; } = 1; /// /// 星级 服务满意度打分☆☆☆☆☆ 注:其中默认都是5星,最低只能打1星,每一星对应20分,合计100分 /// public int starnum { get; set; } = 0; /// /// 评价 /// public string evaluate { get; set; } /// /// 评价标签 /// public List label { get; set; } /// /// 附件 /// public List files { get; set; } /// /// 提交人 ------------------------------------------------- /// public string createuser { get; set; } = ""; /// /// 提交人姓名 /// public string createusername { get; set; } = ""; /// /// 提交时间 /// public DateTime createtime { get; set; } = DateTime.Now; /// /// 是否删除(0正常1删除) /// public int isdelete { get; set; } = 0; /// /// 删除用户 /// public string deleteby { get; set; } /// /// 删除时间 /// public DateTime? deletetime { get; set; } } }