SendWeComMsg.cs
507 Bytes
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace HHECS.Model.Entities
{
[Table("sendwecommsg")]
public class SendWeComMsg:BaseEntityCU<int>
{
public string Content { get; set; }
public string Types { get; set; }
public bool? IsHandle { get; set; }
public string Remark { get; set; }
public int RecordId { get; set; }
}
}