You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
226 B
12 lines
226 B
export default class WalletRecord{
|
|
//收支类型
|
|
amounttype = 0;
|
|
//记录时间
|
|
inserttime = 0;
|
|
//描述
|
|
recorddesc = '';
|
|
//收支金额 单位分
|
|
scorenum = 0;
|
|
//生效状态 0入账中 1已入账
|
|
status = 0;
|
|
}
|