1234567891011121314151617181920212223242526272829303132333435 |
- using FreeSql.DataAnnotations;
- namespace Admin.Core.Model.Admin
- {
-
-
-
- [Table(Name = "ad_opration_log")]
- public class OprationLogEntity: LogAbstract
- {
-
-
-
- [Column(Position = 2, StringLength = 50)]
- public string ApiLabel { get; set; }
-
-
-
- [Column(Position = 3, StringLength = 500)]
- public string ApiPath { get; set; }
-
-
-
- [Column(Position = 4, StringLength = 50)]
- public string ApiMethod { get; set; }
-
-
-
- [Column(StringLength = -1)]
- public string Params { get; set; }
- }
- }
|