提交 f7f5f5c3 编写于 作者: F fancy

增加考勤设备的字段长度,现在有很长名字的设备,比如小米xxx

上级 1c63ef77
......@@ -147,13 +147,13 @@ public class AttendanceDetailMobile extends SliceJpaObject {
public static final String optMachineType_FIELDNAME = "optMachineType";
@FieldDescribe("操作设备类别:手机品牌|PAD|PC|其他")
@Column( length = JpaObject.length_32B, name = ColumnNamePrefix + optMachineType_FIELDNAME )
@Column( length = JpaObject.length_128B, name = ColumnNamePrefix + optMachineType_FIELDNAME )
@CheckPersist(allowEmpty = true)
private String optMachineType;
public static final String optSystemName_FIELDNAME = "optSystemName";
@FieldDescribe("操作设备类别:Mac|Windows|IOS|Android|其他")
@Column( length = JpaObject.length_32B, name = ColumnNamePrefix + optSystemName_FIELDNAME )
@Column( length = JpaObject.length_128B, name = ColumnNamePrefix + optSystemName_FIELDNAME )
@CheckPersist(allowEmpty = true)
private String optSystemName;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册