JXMovies/CMS/JXCMS.CMS.Movie/Entity/TestEntity.cs

14 lines
265 B
C#
Raw Normal View History

2020-02-09 19:10:05 +08:00
using System;
using FreeSql;
namespace JXCMS.CMS.Entity
{
public class TestEntity : BaseEntity<TestEntity, int>
{
public string Name { get; set; }
public string Des { get; set; }
public DateTime ModifyTime { get; set; }
}
}