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.
33 lines
591 B
33 lines
591 B
2 years ago
|
package com.ynxbd.common.bean.pay;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
import lombok.Setter;
|
||
|
import lombok.ToString;
|
||
|
|
||
|
/**
|
||
|
* 外采支付
|
||
|
*
|
||
|
* @Author wsq
|
||
|
* @Date 2022/04/21 16:24
|
||
|
* @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
|
||
|
*/
|
||
|
@Setter
|
||
|
@Getter
|
||
|
@ToString(callSuper = true)
|
||
|
@NoArgsConstructor
|
||
|
public class PayOutCollect extends Order {
|
||
|
private String barCode;
|
||
|
|
||
|
private String collectId;
|
||
|
|
||
|
private String mid;
|
||
|
|
||
|
private String name;
|
||
|
|
||
|
private String idCardNo;
|
||
|
|
||
|
private String remark;
|
||
|
|
||
|
}
|