25 lines
691 B
C#
25 lines
691 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Mini.Model.Entity
|
|
{
|
|
public class Ww_RoomChat
|
|
{
|
|
[Key]
|
|
public string roomid { get; set; }
|
|
public string corpid { get; set; }
|
|
public string roomname { get; set; }
|
|
public string creator { get; set; }
|
|
public string notice { get; set; }
|
|
public long room_create_time { get; set; }
|
|
public string members { get; set; }
|
|
public int membernum { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public DateTime? ltimeupdate { get; set; }
|
|
|
|
}
|
|
} |