| | |
| | | using System; |
| | | using Furion.DatabaseAccessor; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Linq; |
| | | using System.Text; |
| | |
| | | /// <summary> |
| | | /// 编号地址 |
| | | /// </summary> |
| | | public class CodeUrl : CommonEntity |
| | | public class CodeUrl : CommonEntity<MasterDbContextLocator> |
| | | { |
| | | /// <summary> |
| | | /// 场景 |
| | |
| | | public string Url { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 参数1 |
| | | /// </summary> |
| | | public string ParamValue1 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 参数2 |
| | | /// </summary> |
| | | public string ParamValue2 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 参数3 |
| | | /// </summary> |
| | | public string ParamValue3 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 参数4 |
| | | /// </summary> |
| | | public string ParamValue4 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 参数5 |
| | | /// </summary> |
| | | public string ParamValue5 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 过期时间 |
| | | /// </summary> |
| | | public DateTime? ExpiredTime { get; set; } |