-
Notifications
You must be signed in to change notification settings - Fork 1
/
TBetaCRActivityExtension.cs
76 lines (66 loc) · 2.58 KB
/
TBetaCRActivityExtension.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
using System;
using System.Collections;
using System.Collections.Generic;
using PX.SM;
using PX.Data;
using PX.Data.Automation;
namespace TeamBeta2021
{
using System;
using PX.Data;
using PX.Objects.CR;
[System.SerializableAttribute()]
[PXTable(typeof(CRActivity.noteID), IsOptional = false)]
public sealed class TBetaCRActivityExtension : PXCacheExtension<CRActivity>
{
public static bool IsActive() => true;
#region CreatedAt
[PXDBLong()]
[PXUIField(DisplayName = "Created At")]
public long? CreatedAt { get; set; }
public abstract class createdAt : PX.Data.BQL.BqlLong.Field<createdAt> { }
#endregion
#region Duration
[PXDBInt()]
[PXUIField(DisplayName = "Duration")]
public int? Duration { get; set; }
public abstract class duration : PX.Data.BQL.BqlInt.Field<duration> { }
#endregion
#region Resolution
[PXDBString(20, InputMask = "")]
[PXUIField(DisplayName = "Resolution")]
public string Resolution { get; set; }
public abstract class resolution : PX.Data.BQL.BqlString.Field<resolution> { }
#endregion
#region Url
[PXDBString(IsUnicode = true, InputMask = "")]
[PXUIField(DisplayName = "Url")]
public string Url { get; set; }
public abstract class url : PX.Data.BQL.BqlString.Field<url> { }
#endregion
#region SessionID
[PXDBString(80, InputMask = "")]
[PXUIField(DisplayName = "Session ID")]
public string SessionID { get; set; }
public abstract class sessionID : PX.Data.BQL.BqlString.Field<sessionID> { }
#endregion
#region Hosttoken
[PXDBString(InputMask = "")]
[PXUIField(DisplayName = "Hosttoken")]
public string Hosttoken { get; set; }
public abstract class hosttoken : PX.Data.BQL.BqlString.Field<hosttoken> { }
#endregion
#region Participanttoken
[PXDBString(InputMask = "")]
[PXUIField(DisplayName = "Participanttoken")]
public string Participanttoken { get; set; }
public abstract class participanttoken : PX.Data.BQL.BqlString.Field<participanttoken> { }
#endregion
#region TBetaLastModifiedDateTime
[PXDBLastModifiedDateTime()]
[PXUIField(DisplayName = "TBeta Last Modified Date Time")]
public DateTime? TBetaLastModifiedDateTime { get; set; }
public abstract class tBetaLastModifiedDateTime : PX.Data.BQL.BqlDateTime.Field<tBetaLastModifiedDateTime> { }
#endregion
}
}