You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
392 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Web;
namespace BookingJieFeng.DB.Model
{
[Table("SYS_USER_IMG")]
public class SysUserImg
{
[Key]
public string UserId { get; set; }
public byte[] PicData { get; set; }
}
}