I want to write code here. How should I do ?
Added by keating wang over 14 years ago
I want to write code here. How should I do ?
@
public class ShipperOrderInspectionItem {
private String consigneeCn;
private String consigneeEn;
public String getConsigneeCn() {
return consigneeCn;
}
public String getConsigneeEn() {
return consigneeEn;
}
}
@
Oh, God ! I don't like the result...
Replies (2)
RE: I want to write code here. How should I do ?
-
Added by Eric Davis over 14 years ago
Use <pre><code>
public class ShipperOrderInspectionItem {
private String consigneeCn;
private String consigneeEn;
public String getConsigneeCn() {
return consigneeCn;
}
public String getConsigneeEn() {
return consigneeEn;
}
}
Eric Davis
RE: I want to write code here. How should I do ?
-
Added by keating wang over 14 years ago
okay,thank you !